{% extends '_base.html' %} {% load static %} {% load i18n %} {% block content %} {% include 'user/header.html' with title=resource.name %}
{% if error_message %}
{{ error_message }}
{% endif %} {% if info_message %}
{{ info_message }}
{% endif %}

{{ resource.name }}

{% for attribute, values, properties in resource.attributes %} {% if properties.multi_value %} {% include '_components/multi_valued_input.html' with title=attribute %} {% else %}
{{ attribute }} {% if properties.required %} * {% endif %}
{% endif %} {% endfor %} {% csrf_token %} {% include '_components/required_field_message.html' %}
{% endblock %}