{% extends view.base_template|default:"subjects/base.html" %} {% load static i18n bootstrap4 utils %} {% block title %} {% translate "Edit subject" %} · {{ block.super }} {% endblock %} {% block content %}
{% include 'utils/form_errors.html' with form=form %} {% csrf_token %} {% bootstrap_field form.not_available_until %} {% if subject.subjectnote_set.exists %}
{% translate "Notes" %}

{% for note in subject.subjectnote_set.all %} {{ note.content }} {% endfor %}

{% endif %} {% bootstrap_field form.source %} {% bootstrap_field form.additional_suitability_document %} {% bootstrap_field form.deceased %} {% bootstrap_field form.blocked %}
{% endblock %} {% block extra_scripts %} {% endblock %}