{% extends "lms/templates/lms_base.html" %} {% block title %} {{ assignment.title }} {% endblock %} {% block page_content %}
{{ Header() }}
{{ SubmissionForm(assignment) }}
{% endblock %} {% macro Header() %}
{{ assignment.title }}
{% if assignment.grade_assignment and submission.status %} {% set color = "green" if submission.status == "Pass" else "red" if submission.status == "Fail" else "orange" %}
{{ submission.status }}
{% endif %}
{{ _("All Batches") }} {{ _("Assignment Submission") }}
{% if not assignment.show_answer or (assignment.show_answer and not submission) %}
{% endif %}
{% endmacro %} {% macro SubmissionForm(assignment) %}
{% if assignment.grade_assignment and submission.name %}
{{ _("You've successfully submitted the assignment. Once the moderator grades your submission, you'll find the details here. Feel free to make edits to your submission if needed.") }}
{% if is_moderator %}
{{ _("Student Name") }}
{{ submission.member_name }}
{% endif %} {% endif %}
{{ _("Question")}}
{{ assignment.question }}
{% if assignment.type not in ["URL", "Text"] %}
{{ _("Submit")}}
{{ _("Upload assignment as {0}").format(assignment.type) }}
{{ _("Browse").format(assignment.type) }}
{{ _("Clear") }}
{% else %}
{{ _("Submission")}}
{% if assignment.type == "URL" %} {{ _("Enter a {0}").format(assignment.type) }} {% else %} {{ _("Enter your response") }} {% endif %}
{% if assignment.type == "URL" %} {% else %}
{% if submission.answer %}
{{ submission.answer }}
{% endif %} {% endif %}
{% endif %} {% if assignment.show_answer and submission %}
{{ _("Response by Instructor:") }}
{{ assignment.answer }}
{% endif %} {% if assignment.grade_assignment and is_moderator %}
{{ _("Status") }}
{{ _("Comments by Mentor") }}
{% endif %} {% if submission and submission.member == frappe.session.user and submission.comments %}
{{ _("Comments by Mentor") }}
{{ submission.comments }}
{% endif %}
{% endmacro %}