{% extends "_base.html" %} {% load static %} {% load filters %} {% block styles %} {{ block.super }} {% endblock styles %} {% block ui_active_tab %}'subjects'{% endblock ui_active_tab %} {% block page_header %}Details of the subject{% endblock page_header %} {% block page_description %}{% endblock page_description %} {% block title %}{{ block.super }} - Details of subject {% endblock %} {% block breadcrumb %} {% include "subjects/breadcrumb.html" %} {% endblock breadcrumb %} {% block maincontent %} {% block content %}
Back
{% comment %}

Details of subject

{% endcomment %}
{% for field in form %}
{{ field|disable|add_class:'form-control' }}
{% if field.errors %} {{ field.errors }} {% endif %}
{% endfor %}
Subject's visits
{% endblock %} {% endblock maincontent %} {% block scripts %} {{ block.super }} {% endblock scripts %}