mirror of https://github.com/interlegis/sapl.git
12 changed files with 102 additions and 43 deletions
@ -0,0 +1,19 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
# Generated by Django 1.9.5 on 2016-05-20 11:54 |
||||
|
from __future__ import unicode_literals |
||||
|
|
||||
|
from django.db import migrations |
||||
|
|
||||
|
|
||||
|
class Migration(migrations.Migration): |
||||
|
|
||||
|
dependencies = [ |
||||
|
('protocoloadm', '0012_auto_20160503_0926'), |
||||
|
] |
||||
|
|
||||
|
operations = [ |
||||
|
migrations.RemoveField( |
||||
|
model_name='tramitacaoadministrativo', |
||||
|
name='ultima', |
||||
|
), |
||||
|
] |
||||
@ -0,0 +1,10 @@ |
|||||
|
{% extends "crud/detail.html" %} |
||||
|
{% load i18n %} |
||||
|
{% block actions %} |
||||
|
<h1><b>Protocolos</b></h1> |
||||
|
<div class="actions btn-group pull-right" role="group"> |
||||
|
<a href="{% url 'protocoloadm:tramitacaoadministrativo_list' object.pk %}" class="btn btn-default">{% trans 'Tramitações' %}</a> |
||||
|
<a href="{{ view.update_url }}" class="btn btn-default">{% trans 'Editar' %}</a> |
||||
|
<a href="{{ view.delete_url }}" class="btn btn-default">{% trans 'Excluir' %}</a> |
||||
|
</div> |
||||
|
{% endblock actions %} |
||||
@ -1,9 +0,0 @@ |
|||||
{% extends "protocoloadm/protocoloadm_detail.html" %} |
|
||||
{% load i18n %} |
|
||||
{% load crispy_forms_tags %} |
|
||||
|
|
||||
{% block detail_content %} |
|
||||
<legend>Pesquisa Avançada</legend> |
|
||||
{% crispy form %} |
|
||||
</fieldset> |
|
||||
{% endblock detail_content %} |
|
||||
Loading…
Reference in new issue