{% extends "documents/document_base.html" %} {% load i18n %} {% load bootstrap_tags %} {% block title %}{{ document.typename }} — {{ block.super }}{% endblock %} {% block head %} {% include "geonode/ext_header.html" %} {{ block.super }} {% endblock %} {% block body_class %}data{% endblock %} {% block body_outer %}
{% blocktrans with document.typename as document_title %} Editing details for {{ document_title }} {% endblocktrans %} {% csrf_token %}
{{ document_form|as_bootstrap }}

{% autoescape off %}
{% for choice in category_form.category_choice_field.field.choices %}
{{ choice.1 }}
{% endfor %}
{% endautoescape %}
{% endblock %} {% block extra_script %} {% include 'metadata_form_js.html' %} {% endblock %}