{% extends base_template|default:"subjects/base.html" %} {% load static i18n bootstrap5 utils %} {% block title %} {% translate "Edit subject" %} · {{ block.super }} {% endblock %} {% block content %} {% if subject.contact.has_guardian %} {% endif %}
{% include 'utils/form_errors.html' with form=form %} {% csrf_token %}
{% translate "Availability" %}
{% bootstrap_field form.availability_monday %}
{% bootstrap_field form.availability_tuesday %}
{% bootstrap_field form.availability_wednesday %}
{% bootstrap_field form.availability_thursday %}
{% bootstrap_field form.availability_friday %}
{% bootstrap_field form.not_available_until %} {% if subject.note_hard_of_hearing or subject.note_difficult_to_understand or subject.note_abusive_language or subject.subjectnote_set.exists %}
{% translate "Notes" %}

{% if subject.note_hard_of_hearing %} {{ subject|verbose_name:'note_hard_of_hearing' }} {% endif %} {% if subject.note_difficult_to_understand %} {{ subject|verbose_name:'note_difficult_to_understand' }} {% endif %} {% if subject.note_abusive_language %} {{ subject|verbose_name:'note_abusive_language' }} {% endif %} {% 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 %}