{% block topbar %}
{% include 'management/partials/topbar.html' %}
{% endblock topbar %}
{% if messages %}
{% include "management/messages.html" with messages=messages %}
{% endif %}
{% if form.errors %}
{% include "base/errors.html" with errors=form.non_field_errors %}
{% for field in form %}
{% include "base/errors.html" with errors=field.errors %}
{% endfor %}
{% endif %}
{% block page_title %}
{% endblock page_title %}
{% block content %}{% endblock content %}