{% extends "base.html" %} {% load static i18n %} {% block title %}{{ title }} - {{ block.super }}{% endblock %} {% block content %}

{{ title }}

{% if agency %}
{% trans "Currently Editing" %}
{{ agency.name }}
{% if agency.contact_person %}

{% trans "Contact" %}: {{ agency.contact_person }}

{% endif %} {% if agency.email %}

{{ agency.email }}

{% endif %}

{% trans "Created" %}: {{ agency.created_at|date:"d M Y" }} • {% trans "Last Updated" %}: {{ agency.updated_at|date:"d M Y" }}

{% endif %}

{% trans "Agency Information" %}

{% if form.non_field_errors %} {% endif %}
{% csrf_token %}
{% if form.name.errors %}
{{ form.name.errors.0 }}
{% endif %} {% if form.name.help_text %}

{{ form.name.help_text }}

{% endif %}
{% if form.contact_person.errors %}
{{ form.contact_person.errors.0 }}
{% endif %} {% if form.contact_person.help_text %}

{{ form.contact_person.help_text }}

{% endif %}
{% if form.phone.errors %}
{{ form.phone.errors.0 }}
{% endif %} {% if form.phone.help_text %}

{{ form.phone.help_text }}

{% endif %}
{% if form.email.errors %}
{{ form.email.errors.0 }}
{% endif %} {% if form.email.help_text %}

{{ form.email.help_text }}

{% endif %}
{% if form.website.errors %}
{{ form.website.errors.0 }}
{% endif %} {% if form.website.help_text %}

{{ form.website.help_text }}

{% endif %}
{% if form.country.errors %}
{{ form.country.errors.0 }}
{% endif %} {% if form.country.help_text %}

{{ form.country.help_text }}

{% endif %}
{% if form.city.errors %}
{{ form.city.errors.0 }}
{% endif %} {% if form.city.help_text %}

{{ form.city.help_text }}

{% endif %}
{% if form.address.errors %}
{{ form.address.errors.0 }}
{% endif %} {% if form.address.help_text %}

{{ form.address.help_text }}

{% endif %}
{% if form.description.errors %}
{{ form.description.errors.0 }}
{% endif %} {% if form.description.help_text %}

{{ form.description.help_text }}

{% endif %}
{% trans "Cancel" %}
{% endblock %}