diff --git a/templates/comissoes/composicao.html b/templates/comissoes/composicao.html index a544d611b..610c6e13d 100644 --- a/templates/comissoes/composicao.html +++ b/templates/comissoes/composicao.html @@ -1,6 +1,8 @@ {% extends "comissoes/comissao_detail.html" %} {% load i18n %} +{% block actions %}{% endblock actions %} + {% block detail_content %} TODO ... Composição {% endblock detail_content %} diff --git a/templates/comissoes/materias.html b/templates/comissoes/materias.html index d04b1fa1a..0573ea9a8 100644 --- a/templates/comissoes/materias.html +++ b/templates/comissoes/materias.html @@ -1,6 +1,8 @@ {% extends "comissoes/comissao_detail.html" %} {% load i18n %} +{% block actions %}{% endblock actions %} + {% block detail_content %} TODO ... Matérias {% endblock detail_content %} diff --git a/templates/comissoes/reunioes.html b/templates/comissoes/reunioes.html index 22172c969..6a78b7881 100644 --- a/templates/comissoes/reunioes.html +++ b/templates/comissoes/reunioes.html @@ -1,6 +1,8 @@ {% extends "comissoes/comissao_detail.html" %} {% load i18n %} +{% block actions %}{% endblock actions %} + {% block detail_content %} TODO ... Reuniões {% endblock detail_content %} diff --git a/templates/crud/detail.html b/templates/crud/detail.html index 4569057d2..603d33f4d 100644 --- a/templates/crud/detail.html +++ b/templates/crud/detail.html @@ -5,10 +5,12 @@ {# FIXME is this the best markup to use? #}
- + {% block actions %} + + {% endblock actions %} {% block sections_nav %}{% endblock %}
@@ -33,5 +35,5 @@ {% endfor %} {% endblock detail_content %} -{% endblock %} +{% endblock base_content %}