{{ Header() }}
{{ SubmissionForm(assignment) }}
{% endblock %}
{% macro Header() %}
{% if submission.name and is_moderator %}
{{ _("Student Name") }}
{{ submission.member_name }}
{% endif %}
{{ _("Question")}}
{{ assignment.question }}
{{ _("Submit")}}
{{ _("Upload assignment as {0}").format(assignment.type) }}
{{ _("Browse").format(assignment.type) }}
{% if is_moderator %}
{{ _("Comments by Mentor") }}
{% endif %}
{% if submission and submission.member == frappe.session.user and submission.comments %}
{{ _("Comments by Mentor") }}
{{ submission.comments }}
{% endif %}
{% endmacro %}