{% extends "base.html" %} {% load i18n %} {% load static %} {% load bootstrap3 %} {% load dict_parser %} {% block extrajs %} {% endblock %} {% block title %} {% if form.instance.pk %} {% trans "Edit Station" %} {% else %} {% trans "Add Station" %} {% endif %} {% endblock %} {% block content %}
{% if form.instance.pk %}

{% trans "Edit station details for " %} {{ form.instance.name }} :

{% else %}

{% trans "Fill the station details:" %}

{% endif %}
{% csrf_token %}
{% bootstrap_field form.water_basin %} {% bootstrap_field form.water_division %} {% bootstrap_field form.political_division %} {% bootstrap_field form.name %} {% bootstrap_field form.short_name %} {% bootstrap_field form.stype %} {% bootstrap_field form.is_automatic %} {% bootstrap_field form.start_date %} {% bootstrap_field form.end_date %}
{% bootstrap_field form.ordinate %} {% bootstrap_field form.abscissa %} {% bootstrap_field form.srid %} {% bootstrap_field form.altitude %} {% bootstrap_field form.asrid %} {% bootstrap_field form.approximate %}
{% bootstrap_field form.remarks %} {% bootstrap_field form.name_alt %} {% bootstrap_field form.short_name_alt %} {% bootstrap_field form.remarks_alt %}
{% bootstrap_field form.owner %} {% bootstrap_field form.copyright_holder %} {% bootstrap_field form.copyright_years %}
{% buttons %} {% endbuttons %}
{% endblock %}