mirror of https://github.com/interlegis/sapl.git
LeandroRoberto
9 years ago
12 changed files with 224 additions and 85 deletions
@ -0,0 +1,23 @@ |
|||
# -*- coding: utf-8 -*- |
|||
from __future__ import unicode_literals |
|||
|
|||
from django.db import migrations, models |
|||
|
|||
|
|||
class Migration(migrations.Migration): |
|||
|
|||
dependencies = [ |
|||
('compilacao', '0035_auto_20151223_1709'), |
|||
] |
|||
|
|||
operations = [ |
|||
migrations.AlterModelOptions( |
|||
name='textoarticulado', |
|||
options={'verbose_name': 'Texto Articulado', 'verbose_name_plural': 'Textos Articulados', 'ordering': ['-data', '-numero']}, |
|||
), |
|||
migrations.AddField( |
|||
model_name='textoarticulado', |
|||
name='participacao_social', |
|||
field=models.BooleanField(choices=[(True, 'Sim'), (False, 'Não')], verbose_name='Participação Social', default=False), |
|||
), |
|||
] |
@ -0,0 +1,19 @@ |
|||
# -*- coding: utf-8 -*- |
|||
from __future__ import unicode_literals |
|||
|
|||
from django.db import migrations, models |
|||
|
|||
|
|||
class Migration(migrations.Migration): |
|||
|
|||
dependencies = [ |
|||
('compilacao', '0036_auto_20151224_1341'), |
|||
] |
|||
|
|||
operations = [ |
|||
migrations.AlterField( |
|||
model_name='textoarticulado', |
|||
name='participacao_social', |
|||
field=models.NullBooleanField(verbose_name='Participação Social', choices=[(True, 'Sim'), (False, 'Não')], default=False), |
|||
), |
|||
] |
@ -0,0 +1,24 @@ |
|||
# -*- coding: utf-8 -*- |
|||
from __future__ import unicode_literals |
|||
|
|||
from django.db import migrations, models |
|||
|
|||
|
|||
class Migration(migrations.Migration): |
|||
|
|||
dependencies = [ |
|||
('compilacao', '0037_auto_20151224_1348'), |
|||
] |
|||
|
|||
operations = [ |
|||
migrations.AddField( |
|||
model_name='tipotextoarticulado', |
|||
name='participacao_social', |
|||
field=models.NullBooleanField(default=False, verbose_name='Participação Social', choices=[(True, 'Sim'), (False, 'Não')]), |
|||
), |
|||
migrations.AlterField( |
|||
model_name='textoarticulado', |
|||
name='participacao_social', |
|||
field=models.NullBooleanField(default=None, verbose_name='Participação Social', choices=[(None, 'Padrão definido no Tipo'), (True, 'Sim'), (False, 'Não')]), |
|||
), |
|||
] |
@ -0,0 +1,20 @@ |
|||
{% extends "base.html" %} |
|||
{% load i18n %} |
|||
|
|||
{% block base_content %} |
|||
<form action="" method="post">{% csrf_token %} |
|||
<div class="callout panel text-center radius clearfix"> |
|||
|
|||
<p> |
|||
{% blocktrans %} |
|||
Confirma exclusão de <br/> "{{ object }}"? |
|||
{% endblocktrans %} |
|||
</p> |
|||
<div class="button-group"> |
|||
<a href="{{ view.detail_url }}" class="button button radius alert">{% trans 'Cancelar' %}</a> |
|||
<input name="submit" value="{% trans 'Confirmar' %}" class="submit button button radius success" type="submit"></li> |
|||
</div> |
|||
|
|||
</div> |
|||
</form> |
|||
{% endblock %} |
@ -1,71 +1,61 @@ |
|||
{% extends "base.html" %} |
|||
{% load i18n %} |
|||
{% load compilacao_filters %} |
|||
|
|||
{% block base_content %} |
|||
|
|||
{# FIXME is this the best markup to use? #} |
|||
<div class="clearfix"> |
|||
{% extends "base.html" %} {% load i18n %} {% load compilacao_filters %} {% block base_content %} {# FIXME is this the best markup to use? #} |
|||
<div class="clearfix"> |
|||
{% block actions %} |
|||
<dl class="sub-nav right"> |
|||
<dl class="sub-nav right"> |
|||
<dd><a href="{% url 'ta_edit' object.pk %}" class="button">{% trans 'Editar' %}</a></dd> |
|||
<dd><a href="" class="button alert">{% trans 'Excluir' %}</a></dd> |
|||
</dl> |
|||
{% endblock actions %} |
|||
{% block sections_nav %}{% endblock %} |
|||
</div> |
|||
|
|||
{% block detail_content %} |
|||
{# TODO replace fieldset for something semantically correct, but with similar visual grouping style #} |
|||
|
|||
<fieldset> |
|||
<legend>{%trans 'Identificação Básica'%}</legend> |
|||
|
|||
<div class="row"> |
|||
|
|||
<div class="columns large-5"> |
|||
<div id="div_id_tipo" class="holder"> |
|||
<label>{% verbose_name object 'tipo_ta' %}</label> |
|||
<p>{{ object.tipo_ta}}</p> |
|||
</div> |
|||
</div> |
|||
|
|||
<div class="columns large-2"> |
|||
<div id="div_id_numero" class="holder"> |
|||
<label>{% verbose_name object 'numero' %}</label> |
|||
<p>{{ object.numero}}</p> |
|||
</div> |
|||
</div> |
|||
|
|||
<div class="columns large-2"> |
|||
<div id="div_id_ano" class="holder"> |
|||
<label>{% verbose_name object 'ano' %}</label> |
|||
<p>{{ object.ano}}</p> |
|||
</div> |
|||
</div> |
|||
|
|||
<div class="columns large-3"> |
|||
<div id="div_id_data" class="holder"> |
|||
<label>{% verbose_name object 'data' %}</label> |
|||
<p>{{ object.data}}</p> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<div class="row"> |
|||
|
|||
<div class="columns large-12"> |
|||
<div id="div_id_ementa" class="holder"> |
|||
<label>{% verbose_name object 'ementa' %}</label> |
|||
<p>{{ object.ementa|safe}}</p> |
|||
</div> |
|||
</div> |
|||
|
|||
</div> |
|||
|
|||
</fieldset> |
|||
|
|||
|
|||
|
|||
{% endblock detail_content %} |
|||
|
|||
{% endblock base_content %} |
|||
<dd><a href="{% url 'ta_delete' object.pk %}" class="button alert">{% trans 'Excluir' %}</a></dd> |
|||
</dl> |
|||
{% endblock actions %} {% block sections_nav %}{% endblock %} |
|||
</div> |
|||
|
|||
{% block detail_content %} {# TODO replace fieldset for something semantically correct, but with similar visual grouping style #} |
|||
|
|||
<fieldset> |
|||
<legend>{%trans 'Identificação Básica'%}</legend> |
|||
|
|||
<div class="row"> |
|||
|
|||
<div class="columns large-4"> |
|||
<div id="div_id_tipo" class="holder"> |
|||
<label>{% verbose_name object 'tipo_ta' %}</label> |
|||
<p>{{ object.tipo_ta}}</p> |
|||
</div> |
|||
</div> |
|||
|
|||
<div class="columns large-3"> |
|||
<div id="div_id_numero" class="holder"> |
|||
<label>{% verbose_name object 'numero' %}</label> |
|||
<p>{{ object.numero}}</p> |
|||
</div> |
|||
</div> |
|||
|
|||
<div class="columns large-2"> |
|||
<div id="div_id_ano" class="holder"> |
|||
<label>{% verbose_name object 'ano' %}</label> |
|||
<p>{{ object.ano}}</p> |
|||
</div> |
|||
</div> |
|||
|
|||
<div class="columns large-3"> |
|||
<div id="div_id_data" class="holder"> |
|||
<label>{% verbose_name object 'data' %}</label> |
|||
<p>{{ object.data}}</p> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<br> |
|||
<div class="row"> |
|||
<div class="columns large-12"> |
|||
<div id="div_id_ementa" class="holder"> |
|||
<label>{% verbose_name object 'ementa' %}</label> |
|||
<p>{{ object.ementa|safe}}</p> |
|||
</div> |
|||
</div> |
|||
|
|||
</div> |
|||
|
|||
</fieldset> |
|||
|
|||
|
|||
|
|||
{% endblock detail_content %} {% endblock base_content %} |
|||
|
Loading…
Reference in new issue