From 3a83588457736086e8b7511d672de354ecac28e3 Mon Sep 17 00:00:00 2001 From: Eduardo Calil Date: Thu, 6 Jul 2017 15:41:42 -0300 Subject: [PATCH] =?UTF-8?q?Inicia=20a=20reestrutura=C3=A7=C3=A3o?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sapl/templates/parlamentares/frente_form.html | 71 +++++++++++++++++++ 1 file changed, 71 insertions(+) create mode 100644 sapl/templates/parlamentares/frente_form.html diff --git a/sapl/templates/parlamentares/frente_form.html b/sapl/templates/parlamentares/frente_form.html new file mode 100644 index 000000000..b22140742 --- /dev/null +++ b/sapl/templates/parlamentares/frente_form.html @@ -0,0 +1,71 @@ +{% extends "crud/form.html" %} +{% load i18n %} +{% load crispy_forms_tags %} +{% load common_tags %} + +{% block base_content %} +
+ {% csrf_token %} + +
+
+
+ {{ form.nome }} + + +
+
+ +
+
+ +
+ +
+ {% for parlamentar, check in view.get_presencas_ordem %} + {% if parlamentar.ativo %} +
+ +
+ {% else %} + + {% endif %} + {% endfor %} +
+ +
+ + + +{% endblock base_content %} + +{% block extra_js %} + +{% endblock %}