{% if assignment.grade_assignment and submission.status %}
{% set color = "green" if submission.status == "Pass" else "red" if submission.status == "Fail" else "orange" %}
{% 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) }}