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 %}