{% extends "bee_django_course/base.html" %} {% load bootstrap3 %} {% block content %}

{{ ucs.section.name }} | 学生: {{ ucs.user_course.user.username }}

{% if ucs.section.has_imagework %}
图片作业:需要上传{{ ucs.section.image_count_req }}张图片
{% if assignment_images.exists %}
已上传图片: {% for e in assignment_images %} {{ forloop.counter }} {% endfor %}
{% endif %}
{% endif %} {% if ucs.section.has_videowork %}
视频作业:需要录制{{ ucs.section.video_length_req }}分钟的作业
已录制 分钟
查看
{% endif %} {% if ucs.section.has_textwork %}
作业要求:{{ ucs.section.textwork_info }}
{% if ucs.is_learning %}
未提交
{% elif ucs.is_rejected %}
已退回
{% else %}
状态:已提交
{% for e in assignments %}
{{ e.content | safe }}
{% endfor %} {% endif %}
{% endif %} {% if not ucs.is_passed %} {% if perms.user_assignment.can_review %}
普通 优秀 退回
{% endif %} {% else %} {% if ucs.is_passed %} 已通过,得分 {{ ucs.score }}
评语: {{ ucs.comment | default:'无' }}
{% elif ucs.is_rejected %} 退回重修 {% endif %} {% endif %} {% endblock content %} {% block scripts %} {% if perms.user_assignment.can_review %} {% endif %} {% endblock scripts %} {% block styles %} {% load static %} {% endblock styles %}