{% extends "control_panel/base.html" %} {% load i18n %} {% load staticfiles %} {% block title %} {% if form.instance.id %} {% trans "Edit" %} {% else %} {% trans "Add" %} {% endif %} {% trans "Facility" %} {% endblock title %} {% block headcss %} {{ block.super }} {% endblock headcss %} {% block headjs %}{{ block.super }} {% endblock headjs %} {% block content %} {{ block.super }}

{% if form.instance.id %}{% trans "Edit a facility" %}{% else %}{% trans "Add a new Facility" %}{% endif %}

{% trans "Please enter the following information about your facility. Please enter a detailed address, because knowing where you are in the world allows us to better plan for future deployments and partnerships." %}
{% trans "Please use this search box to locate your facility (and/or click on the map to select a spot), and then enter the additional information in the form below." %}
{% trans "(Knowing, as closely as possible, where you are in the world allows us to better plan for future deployments and partnerships)" %}
{% trans "Search for your facility's address or name to find its location on the map (enter to search)" as placeholder %}
{% csrf_token %} {% for field in form.hidden_fields %} {{ field }} {% endfor %} {% for field in form.visible_fields %}

{{ field.label_tag }} {{ field }} {{ field.errors }} {{ field.help_text }}

{% endfor %} {% trans "Save facility" as value %}
{% endblock content %}