mirror of https://github.com/interlegis/sapl.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
438 B
17 lines
438 B
{% extends "crud/detail.html" %}
|
|
{% load i18n %}
|
|
{% load crispy_forms_tags %}
|
|
|
|
|
|
{% block base_content %}
|
|
{% block actions %}
|
|
<div class="actions btn-group pull-right" role="group">
|
|
<a href="{% url 'norma:normajuridica_create' %}" class="btn btn-default">{% trans 'Adicionar Norma Juridica' %}</a>
|
|
</div>
|
|
<br /><br />
|
|
{% endblock %}
|
|
|
|
{% block detail_content %}
|
|
{% crispy form %}
|
|
{% endblock %}
|
|
{% endblock %}
|
|
|