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

作业详情

{{ ucs.section.name }} | 学生: {{ ucs.user_course.user }}
{% if ucs.section.has_imagework %}
图片作业要求:需要上传{{ ucs.section.image_count_req }}张图片
{% if assignment_images.exists %}
已上传图片: {% for e in assignment_images %} {% if e.image %} {{ forloop.counter }} {% else %} [过期删除] {% endif %} {% endfor %}
{% else %} 还未上传图片作业 {% endif %}
{% endif %} {% if ucs.section.has_videowork %}
录播作业要求:需要录制 {{ ucs.section.video_length_req }} {% if ucs.teacher_add_mins > 0 %} + {{ ucs.teacher_add_mins }}{% endif %}分钟的作业
已录制{{ ucs.work_time }} {% if ucs.minus_live_mins > 0 %}- {{ ucs.minus_live_mins }}{% endif %}分钟 查看 {% if ucs.work_time > 0 and ucs.is_learning %} {% if perms.bee_django_course.minus_live_mins %}
修改扣减分钟数为:
{% endif %} {% endif %}
{% endif %} {% if ucs.section.has_textwork %}
文字作业要求:{{ ucs.section.textwork_info }}
{% if assignments|length > 0 %}
状态:已提交
{% for e in assignments %}
{{ e.content | safe }}
{% endfor %} {% else %} 未提交 {% endif %}
{% endif %} {% if ucs.section.has_questionwork %}
作业要求:需回答问题
{% if ucs.question_passed %} 于【{{ ucs.question_passed_at|date:"Y-m-d H:i:s" }}】通过答题 {% else %} 未答题 {% endif %}
{% endif %}
{% if not ucs.is_passed %} {% include 'bee_django_course/user/_ucs_management.html' %} {% else %}

该课件已于【{{ ucs.passed_at|date:"Y-m-d H:i:s" }}】通过

{% endif %}
{% endblock content %} {% block scripts %} {% include 'bee_django_course/user/_ucs_management_script.html' %} {% endblock scripts %}