From 4a71b8010b76c3783ab4a2dd04b6c0c9080200e3 Mon Sep 17 00:00:00 2001 From: Eduardo Edson Batista Cordeiro Alves Date: Thu, 29 Sep 2016 15:27:03 -0300 Subject: [PATCH] Fix #665 --- sapl/templates/materia/relatoria_form.html | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 sapl/templates/materia/relatoria_form.html diff --git a/sapl/templates/materia/relatoria_form.html b/sapl/templates/materia/relatoria_form.html new file mode 100644 index 000000000..953557513 --- /dev/null +++ b/sapl/templates/materia/relatoria_form.html @@ -0,0 +1,14 @@ +{% extends "crud/form.html" %} +{% load i18n %} +{% load crispy_forms_tags %} +{% load common_tags %} + +{% block base_content %} + {% if form.comissao.value == 0 %} + + {% else %} + {% crispy form %} + {% endif %} +{% endblock %}