Gustavosdo/summum

View on GitHub
estagio/templates/admin/import_export/export.html

Summary

Maintainability
Test Coverage
{% extends "admin/import_export/base.html" %}
{% load i18n %}
{% load admin_urls %}
{% load import_export_tags %}
{% load geral_filters %}
{% block title %}{{ _('Exportar') }} | {{ site_title|default:_('Sistema de Controle') }}{% endblock %}

{% block breadcrumbs_last %}
{% trans "Export" %}
{% endblock %}

{% block content %}
{% if user|pode_exportar:opts %}
  
  <h1>{% trans "Export" %}</h1>

  <form action="" method="POST">
    {% csrf_token %}

      <fieldset class="module aligned">
        {% for field in form %}
          <div class="form-row">
            {{ field.errors }}

            {{ field.label_tag }}

            {{ field }}

            {% if field.field.help_text %}
            <p class="help">{{ field.field.help_text|safe }}</p>
            {% endif %}
          
        {% endfor %}
        
          <input type="submit" class="btn btn-success" style="margin-bottom:10px;" value="{% trans "Submit" %}">
          </div>
      </fieldset>
  </form>

{% endif %}
{% endblock %}