{% extends 'subject/index.html' %} {% load static i18n permission_tags widget_tweaks django_bootstrap_breadcrumbs %} {% block breadcrumbs %} {{ block.super }} {% breadcrumb 'Update subject' 'course:update_subject' %} {% endblock breadcrumbs %} {% block content %}
{% csrf_token %} {% for field in form %}
{% if field.auto_id == 'id_init_date' or field.auto_id == 'id_end_date'%} {% else %} {% render_field field class='form-control' placeholder=field.label%} {% endif %} {{ field.help_text }}
{% endfor %}
{% endblock content %}