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

{{ question.part.section.course.title }} -> 课件【{{ question.part.section.title }}】详情 -> 小节【{{ question.part.title }}】详情 -> {% if type == 'add' %}添加{% elif type == 'update' %}修改{% endif %}选择题【{{ question.title }}】的选项

{% csrf_token %} {% bootstrap_form form %} {% if type == 'add' %} {% bootstrap_button '保存并继续添加选项' name='next' %} {% bootstrap_button '保存' name='ok' %} {% elif type == 'update' %} {% bootstrap_button '提交' name='ok' %} {% endif %}
{% endblock %} {% block scripts %} {% endblock %}