@ -1,7 +0,0 @@ |
|||
|
|||
======================== |
|||
Logo Partidos Políticos |
|||
======================== |
|||
|
|||
Dentro da pasta docs/logo_partidos existem os logotipos dos Partidos Políticos em formato png, quem quiser pode usá-los no cadastro de partidos em tabelas auxiliares. |
|||
|
|||
|
Before Width: | Height: | Size: 12 KiB |
|
Before Width: | Height: | Size: 15 KiB |
|
Before Width: | Height: | Size: 22 KiB |
|
Before Width: | Height: | Size: 26 KiB |
|
Before Width: | Height: | Size: 31 KiB |
|
Before Width: | Height: | Size: 5.4 KiB |
|
Before Width: | Height: | Size: 6.3 KiB |
|
Before Width: | Height: | Size: 14 KiB |
|
Before Width: | Height: | Size: 6.5 KiB |
|
Before Width: | Height: | Size: 7.1 KiB |
|
Before Width: | Height: | Size: 12 KiB |
|
Before Width: | Height: | Size: 32 KiB |
|
Before Width: | Height: | Size: 11 KiB |
|
Before Width: | Height: | Size: 10 KiB |
|
Before Width: | Height: | Size: 14 KiB |
|
Before Width: | Height: | Size: 13 KiB |
|
Before Width: | Height: | Size: 14 KiB |
|
Before Width: | Height: | Size: 15 KiB |
|
Before Width: | Height: | Size: 21 KiB |
|
Before Width: | Height: | Size: 14 KiB |
|
Before Width: | Height: | Size: 5.4 KiB |
|
Before Width: | Height: | Size: 18 KiB |
|
Before Width: | Height: | Size: 27 KiB |
|
Before Width: | Height: | Size: 14 KiB |
|
Before Width: | Height: | Size: 12 KiB |
@ -0,0 +1,33 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# Generated by Django 1.9.13 on 2018-10-17 20:27 |
|||
from __future__ import unicode_literals |
|||
|
|||
from django.db import migrations, models |
|||
import django.db.models.deletion |
|||
import sapl.utils |
|||
|
|||
|
|||
class Migration(migrations.Migration): |
|||
|
|||
dependencies = [ |
|||
('audiencia', '0006_auto_20180808_0856'), |
|||
] |
|||
|
|||
operations = [ |
|||
migrations.CreateModel( |
|||
name='AnexoAudienciaPublica', |
|||
fields=[ |
|||
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), |
|||
('nome', models.CharField(max_length=30, verbose_name='Nome')), |
|||
('arquivo', models.FileField(blank=True, null=True, upload_to=sapl.utils.texto_upload_path, verbose_name='Arquivo')), |
|||
('data', models.DateField(blank=True, null=True, verbose_name='Data')), |
|||
('assunto', models.TextField(blank=True, verbose_name='Assunto')), |
|||
('indexacao', models.TextField(blank=True)), |
|||
('audiencia', models.ForeignKey(on_delete=django.db.models.deletion.PROTECT, to='audiencia.AudienciaPublica')), |
|||
], |
|||
options={ |
|||
'verbose_name': 'Documento Acessório', |
|||
'verbose_name_plural': 'Documentos Acessórios', |
|||
}, |
|||
), |
|||
] |
|||
@ -0,0 +1,28 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# Generated by Django 1.10.8 on 2018-10-23 13:51 |
|||
from __future__ import unicode_literals |
|||
|
|||
from django.db import migrations, models |
|||
|
|||
|
|||
class Migration(migrations.Migration): |
|||
|
|||
dependencies = [ |
|||
('audiencia', '0007_anexoaudienciapublica'), |
|||
] |
|||
|
|||
operations = [ |
|||
migrations.AlterModelOptions( |
|||
name='anexoaudienciapublica', |
|||
options={'verbose_name': 'Anexo de Documento Acessório', 'verbose_name_plural': 'Anexo de Documentos Acessórios'}, |
|||
), |
|||
migrations.RemoveField( |
|||
model_name='anexoaudienciapublica', |
|||
name='nome', |
|||
), |
|||
migrations.AlterField( |
|||
model_name='anexoaudienciapublica', |
|||
name='data', |
|||
field=models.DateField(auto_now=True, null=True), |
|||
), |
|||
] |
|||
@ -0,0 +1,19 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# Generated by Django 1.10.8 on 2018-10-23 13:55 |
|||
from __future__ import unicode_literals |
|||
|
|||
from django.db import migrations |
|||
|
|||
|
|||
class Migration(migrations.Migration): |
|||
|
|||
dependencies = [ |
|||
('audiencia', '0008_auto_20181023_1051'), |
|||
] |
|||
|
|||
operations = [ |
|||
migrations.RemoveField( |
|||
model_name='anexoaudienciapublica', |
|||
name='indexacao', |
|||
), |
|||
] |
|||
@ -1,10 +1,11 @@ |
|||
from django.conf.urls import include, url |
|||
from sapl.audiencia.views import (index, AudienciaCrud) |
|||
from sapl.audiencia.views import (index, AudienciaCrud,AnexoAudienciaPublicaCrud) |
|||
|
|||
from .apps import AppConfig |
|||
|
|||
app_name = AppConfig.name |
|||
|
|||
urlpatterns = [ |
|||
url(r'^audiencia/', include(AudienciaCrud.get_urls())), |
|||
url(r'^audiencia/', include(AudienciaCrud.get_urls() + |
|||
AnexoAudienciaPublicaCrud.get_urls())), |
|||
] |
|||
@ -1,11 +1,9 @@ |
|||
from django.conf.urls import patterns, url |
|||
from django.conf.urls import url |
|||
from django.views.generic.base import TemplateView |
|||
|
|||
from sapl.urls import urlpatterns as original_patterns |
|||
|
|||
ptrn = patterns('', |
|||
url(r'^zzzz$', |
|||
ptrn = [url(r'^zzzz$', |
|||
TemplateView.as_view( |
|||
template_name='index.html'), name='zzzz')) |
|||
|
|||
template_name='index.html'), name='zzzz')] |
|||
urlpatterns = original_patterns + ptrn |
|||
|
|||
@ -1,12 +1,12 @@ |
|||
from django.core.management.base import BaseCommand |
|||
|
|||
from sapl.legacy.scripts.ressucita_dependencias import adiciona_ressucitar |
|||
from sapl.legacy.scripts.ressuscita_dependencias import adiciona_ressuscitar |
|||
|
|||
|
|||
class Command(BaseCommand): |
|||
|
|||
help = 'Ressucita dependências apagadas ' \ |
|||
help = 'Ressuscita dependências apagadas ' \ |
|||
'que são necessárias para migrar outros registros' |
|||
|
|||
def handle(self, *args, **options): |
|||
adiciona_ressucitar() |
|||
adiciona_ressuscitar() |
|||
@ -0,0 +1,21 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# Generated by Django 1.9.13 on 2018-10-22 20:43 |
|||
from __future__ import unicode_literals |
|||
|
|||
from django.db import migrations, models |
|||
import django.db.models.deletion |
|||
|
|||
|
|||
class Migration(migrations.Migration): |
|||
|
|||
dependencies = [ |
|||
('materia', '0031_auto_20180924_1724'), |
|||
] |
|||
|
|||
operations = [ |
|||
migrations.AlterField( |
|||
model_name='autoria', |
|||
name='autor', |
|||
field=models.ForeignKey(on_delete=django.db.models.deletion.PROTECT, to='base.Autor', verbose_name='Autor'), |
|||
), |
|||
] |
|||
@ -0,0 +1,66 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# Generated by Django 1.9.13 on 2018-10-16 22:44 |
|||
from __future__ import unicode_literals |
|||
|
|||
from django.db import migrations, models |
|||
import django.db.models.deletion |
|||
|
|||
|
|||
class Migration(migrations.Migration): |
|||
|
|||
dependencies = [ |
|||
('sessao', '0025_auto_20180919_1116'), |
|||
] |
|||
|
|||
operations = [ |
|||
migrations.AlterField( |
|||
model_name='expedientesessao', |
|||
name='sessao_plenaria', |
|||
field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='sessao.SessaoPlenaria'), |
|||
), |
|||
migrations.AlterField( |
|||
model_name='integrantemesa', |
|||
name='sessao_plenaria', |
|||
field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='sessao.SessaoPlenaria'), |
|||
), |
|||
migrations.AlterField( |
|||
model_name='orador', |
|||
name='sessao_plenaria', |
|||
field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='sessao.SessaoPlenaria'), |
|||
), |
|||
migrations.AlterField( |
|||
model_name='oradorexpediente', |
|||
name='sessao_plenaria', |
|||
field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='sessao.SessaoPlenaria'), |
|||
), |
|||
migrations.AlterField( |
|||
model_name='presencaordemdia', |
|||
name='sessao_plenaria', |
|||
field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='sessao.SessaoPlenaria'), |
|||
), |
|||
migrations.AlterField( |
|||
model_name='registrovotacao', |
|||
name='expediente', |
|||
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='sessao.ExpedienteMateria'), |
|||
), |
|||
migrations.AlterField( |
|||
model_name='registrovotacao', |
|||
name='materia', |
|||
field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='materia.MateriaLegislativa'), |
|||
), |
|||
migrations.AlterField( |
|||
model_name='registrovotacao', |
|||
name='ordem', |
|||
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='sessao.OrdemDia'), |
|||
), |
|||
migrations.AlterField( |
|||
model_name='sessaoplenaria', |
|||
name='sessao_legislativa', |
|||
field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='parlamentares.SessaoLegislativa', verbose_name='Sessão Legislativa'), |
|||
), |
|||
migrations.AlterField( |
|||
model_name='sessaoplenariapresenca', |
|||
name='sessao_plenaria', |
|||
field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='sessao.SessaoPlenaria'), |
|||
), |
|||
] |
|||
@ -0,0 +1,25 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# Generated by Django 1.10.8 on 2018-10-23 15:39 |
|||
from __future__ import unicode_literals |
|||
|
|||
from django.db import migrations, models |
|||
|
|||
|
|||
class Migration(migrations.Migration): |
|||
|
|||
dependencies = [ |
|||
('sessao', '0026_auto_20181016_1944'), |
|||
] |
|||
|
|||
operations = [ |
|||
migrations.AlterField( |
|||
model_name='sessaoplenaria', |
|||
name='finalizada', |
|||
field=models.NullBooleanField(choices=[(True, 'Sim'), (False, 'Não')], default=False, verbose_name='Sessão finalizada?'), |
|||
), |
|||
migrations.AlterField( |
|||
model_name='sessaoplenaria', |
|||
name='iniciada', |
|||
field=models.NullBooleanField(choices=[(True, 'Sim'), (False, 'Não')], default=True, verbose_name='Sessão iniciada?'), |
|||
), |
|||
] |
|||
@ -0,0 +1,171 @@ |
|||
{% load i18n staticfiles sass_tags menus %} |
|||
{% load common_tags %} |
|||
<!DOCTYPE html> |
|||
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]--> |
|||
<!--[if gt IE 8]><!--> |
|||
<html class="no-js" lang="pt-br"> |
|||
<!--<![endif]--> |
|||
|
|||
<head> |
|||
<meta charset="utf-8"> |
|||
<title>{% block head_title %}{% trans 'SAPL - Sistema de Apoio ao Processo Legislativo' %}{% endblock %}</title> |
|||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|||
{% block head_content %} |
|||
<link rel="icon" href="{% static 'img/favicon.ico' %}" type="image/png" > |
|||
|
|||
{# Styles #} |
|||
<link rel="stylesheet" href="{% static 'components-font-awesome/css/font-awesome.css' %}"> |
|||
<link rel="stylesheet" href="{% sass_src 'bootstrap-sass/assets/stylesheets/_bootstrap.scss' %}" type="text/css"> |
|||
<link rel="stylesheet" href="{% static 'drunken-parrot-flat-ui/css/drunken-parrot.css' %}"> |
|||
<link rel="stylesheet" href="{% sass_src 'styles/app.scss' %}" type="text/css"> |
|||
|
|||
<link rel="stylesheet" href="{% static 'jquery-ui/themes/cupertino/jquery-ui.min.css' %}"> |
|||
<script type="text/javascript" src="{% static 'jquery/dist/jquery.min.js' %}"></script> |
|||
|
|||
{# Scripts #} |
|||
{# modernizr must be in head (see http://modernizr.com/docs/#installing) #} |
|||
{% endblock %} |
|||
</head> |
|||
|
|||
<body> |
|||
<div class="page fadein"> |
|||
|
|||
{% if not request|has_iframe %} |
|||
{% block navigation %} |
|||
<nav class="navbar navbar-inverse navbar-static-top"> |
|||
<div class="container"> |
|||
<div class="navbar-header"> |
|||
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar"> |
|||
<span class="sr-only">Toggle navigation</span> |
|||
<span class="icon-bar"></span> |
|||
<span class="icon-bar"></span> |
|||
<span class="icon-bar"></span> |
|||
</button> |
|||
</div> |
|||
<div id="navbar" class="navbar-collapse collapse"> |
|||
|
|||
</div><!--/.nav-collapse --> |
|||
</div> |
|||
</nav> |
|||
{% endblock navigation %} |
|||
|
|||
{# Header #} |
|||
{% block main_header %} |
|||
<header class="masthead"> |
|||
<div class="container"> |
|||
<div class="navbar-header"> |
|||
<a class="navbar-brand" href="/"> |
|||
<img src="{% if logotipo %}{{ MEDIA_URL }}{{ logotipo }}{% else %}{% static 'img/logo.png' %}{% endif %}" |
|||
alt="Logo" class="img-responsive visible-md-inline-block visible-lg-inline-block" > |
|||
<span class="vcenter"> |
|||
{# XXX Make better use of translation tags in html blocks ie. actually use the proper blocktrans tag efficiently #} |
|||
|
|||
<br/><small>{% trans 'Sistema de Apoio ao Processo Legislativo' %}</small> |
|||
</span> |
|||
</a> |
|||
</div> |
|||
<div class="hidden-print"> |
|||
{% block sections_nav %} {% subnav %} {% endblock sections_nav %} |
|||
</div> |
|||
</div> |
|||
</header> |
|||
{% endblock main_header %} |
|||
{% else %} |
|||
<div class="btn-cancel-iframe"> |
|||
<a href="?iframe=0" target="_blank"><i class="fa fa-2x fa-arrows-alt"></i></a> |
|||
</div> |
|||
<header class="masthead"> |
|||
<div class="container"> |
|||
<div class="hidden-print"> |
|||
{% subnav %} |
|||
</div> |
|||
</div> |
|||
</header> |
|||
{% endif %} |
|||
<div class="container"> |
|||
<span class="text-center"> |
|||
<br/><h1><big>{% trans 'Página não encontrada! Erro 404' %}</big></h1> |
|||
</span> |
|||
</div> |
|||
{% block base_content %} |
|||
{% endblock %} |
|||
{% if not request|has_iframe %} |
|||
{% block footer_container %} |
|||
<footer id="footer" class="footer page__row hidden-print"> |
|||
<div class="container"> |
|||
|
|||
<div class="row"> |
|||
<div class="col-md-4"> |
|||
|
|||
<a class="footer__logo" href="#"> |
|||
<a href="http://www.interlegis.leg.br/"> |
|||
<img src="{% static 'img/logo_interlegis.png' %}" alt="{% trans 'Logo do Interlegis' %} "> |
|||
</a> |
|||
</a> |
|||
<p> |
|||
<small> |
|||
Desenvolvido pelo <a href="http://www.interlegis.leg.br/">Interlegis</a> em software livre e aberto. |
|||
</small> |
|||
</p> |
|||
</div> |
|||
<div class="col-md-4"> |
|||
<a class="footer__logo" href="#"> |
|||
<img src="{% static 'img/logo_cc.png' %}" alt="{% trans 'Logo do Creative Commons BY SA' %}"> |
|||
</a> |
|||
<p> |
|||
<small> |
|||
Conteúdo e dados sob licença <a href="https://creativecommons.org">Creative Commons</a> 4.0 <a href="https://creativecommons.org/licenses/by/4.0/">Atribuir Fonte - Compartilhar Igual</a> |
|||
</small> |
|||
</p> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</footer> |
|||
</div> |
|||
{% endblock footer_container %} |
|||
{% endif %} |
|||
|
|||
{% block foot_js %} |
|||
<!-- Bootstrap core JavaScript ================================================== --> |
|||
<!-- Placed at the end of the document so the pages load faster --> |
|||
<script type="text/javascript" src="{% static 'bootstrap-sass/assets/javascripts/bootstrap.min.js' %}"></script> |
|||
|
|||
<script type="text/javascript" src="{% static 'jquery-ui/jquery-ui.min.js' %}"></script> |
|||
<script type="text/javascript" src="{% static 'jquery-ui/ui/i18n/datepicker-pt-BR.js' %}"></script> |
|||
|
|||
<script type="text/javascript" src="{% static 'js/jquery.runner.js' %}"></script> |
|||
<script type="text/javascript" src="{% static 'jquery-mask-plugin/dist/jquery.mask.js' %}"></script> |
|||
|
|||
<script src="{% static 'tinymce/tinymce.min.js' %}"></script> |
|||
<script type="text/javascript" src="{% static 'jsdiff/diff.min.js' %}"></script> |
|||
|
|||
<script type="text/javascript" src="{% static 'drunken-parrot-flat-ui/js/checkbox.js' %}"></script> |
|||
<script type="text/javascript" src="{% static 'drunken-parrot-flat-ui/js/radio.js' %}"></script> |
|||
|
|||
<script type="text/javascript" src="{% static 'js/app.js' %}"></script> |
|||
|
|||
<script type="text/javascript" src="{% static 'jquery-query-object/jquery.query-object.js' %}"></script> |
|||
|
|||
{% block extra_js %}{% endblock %} |
|||
|
|||
<script type="text/javascript" > |
|||
|
|||
|
|||
function inIframe () { |
|||
try { |
|||
return window.self !== window.top; |
|||
} catch (e) { |
|||
return true; |
|||
} |
|||
} |
|||
$(document).ready(function(){ |
|||
let iframe_set_backend = {{ request|has_iframe|lower }} |
|||
if (iframe_set_backend && !inIframe() ) { |
|||
location.href = location.origin + '?iframe=0' |
|||
} |
|||
}); |
|||
</script> |
|||
|
|||
{% endblock foot_js %} |
|||
</body> |
|||
</html> |
|||
@ -0,0 +1,135 @@ |
|||
{% load i18n staticfiles sass_tags menus %} |
|||
{% load common_tags %} |
|||
<!DOCTYPE html> |
|||
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]--> |
|||
<!--[if gt IE 8]><!--> |
|||
<html class="no-js" lang="pt-br"> |
|||
<!--<![endif]--> |
|||
|
|||
<head> |
|||
<meta charset="utf-8"> |
|||
<title>{% block head_title %}{% trans 'SAPL - Sistema de Apoio ao Processo Legislativo' %}{% endblock %}</title> |
|||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|||
{% block head_content %} |
|||
<link rel="icon" href="{% static 'img/favicon.ico' %}" type="image/png" > |
|||
|
|||
{# Styles #} |
|||
<link rel="stylesheet" href="{% static 'components-font-awesome/css/font-awesome.css' %}"> |
|||
<link rel="stylesheet" href="{% sass_src 'bootstrap-sass/assets/stylesheets/_bootstrap.scss' %}" type="text/css"> |
|||
<link rel="stylesheet" href="{% static 'drunken-parrot-flat-ui/css/drunken-parrot.css' %}"> |
|||
<link rel="stylesheet" href="{% sass_src 'styles/app.scss' %}" type="text/css"> |
|||
|
|||
<link rel="stylesheet" href="{% static 'jquery-ui/themes/cupertino/jquery-ui.min.css' %}"> |
|||
<script type="text/javascript" src="{% static 'jquery/dist/jquery.min.js' %}"></script> |
|||
|
|||
{# Scripts #} |
|||
{# modernizr must be in head (see http://modernizr.com/docs/#installing) #} |
|||
{% endblock %} |
|||
</head> |
|||
|
|||
<body> |
|||
<div class="page fadein"> |
|||
|
|||
{% block navigation %} |
|||
<nav class="navbar navbar-inverse navbar-static-top"> |
|||
<div class="container"> |
|||
<div class="navbar-header"> |
|||
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar"> |
|||
<span class="sr-only">Toggle navigation</span> |
|||
<span class="icon-bar"></span> |
|||
<span class="icon-bar"></span> |
|||
<span class="icon-bar"></span> |
|||
</button> |
|||
</div> |
|||
<div id="navbar" class="navbar-collapse collapse"> |
|||
|
|||
</div><!--/.nav-collapse --> |
|||
</div> |
|||
</nav> |
|||
{% endblock navigation %} |
|||
|
|||
{# Header #} |
|||
{% block main_header %} |
|||
<header class="masthead"> |
|||
<div class="container"> |
|||
<div class="navbar-header"> |
|||
<a class="navbar-brand" href="/"> |
|||
<span class="text-center"> |
|||
<br/><small>{% trans 'Sistema de Apoio ao Processo Legislativo' %}</small> |
|||
</span> |
|||
</a> |
|||
</div> |
|||
<div class="hidden-print"> |
|||
{% block sections_nav %} {% subnav %} {% endblock sections_nav %} |
|||
</div> |
|||
</div> |
|||
</header> |
|||
{% endblock main_header %} |
|||
|
|||
<div class="container"> |
|||
<span class="text-center"> |
|||
<br/><h1><big>{% trans 'Ocorreu um erro inesperado! Erro 500' %}</big></h1> |
|||
</span> |
|||
</div> |
|||
{% block base_content %} |
|||
{% endblock %} |
|||
{% block footer_container %} |
|||
<footer id="footer" class="footer page__row hidden-print"> |
|||
<div class="container"> |
|||
|
|||
<div class="row"> |
|||
<div class="col-md-4"> |
|||
|
|||
<a class="footer__logo" href="#"> |
|||
<a href="http://www.interlegis.leg.br/"> |
|||
<img src="{% static 'img/logo_interlegis.png' %}" alt="{% trans 'Logo do Interlegis' %} "> |
|||
</a> |
|||
</a> |
|||
<p> |
|||
<small> |
|||
Desenvolvido pelo <a href="http://www.interlegis.leg.br/">Interlegis</a> em software livre e aberto. |
|||
</small> |
|||
</p> |
|||
</div> |
|||
<div class="col-md-4"> |
|||
<a class="footer__logo" href="#"> |
|||
<img src="{% static 'img/logo_cc.png' %}" alt="{% trans 'Logo do Creative Commons BY SA' %}"> |
|||
</a> |
|||
<p> |
|||
<small> |
|||
Conteúdo e dados sob licença <a href="https://creativecommons.org">Creative Commons</a> 4.0 <a href="https://creativecommons.org/licenses/by/4.0/">Atribuir Fonte - Compartilhar Igual</a> |
|||
</small> |
|||
</p> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</footer> |
|||
</div> |
|||
{% endblock footer_container %} |
|||
|
|||
{% block foot_js %} |
|||
<!-- Bootstrap core JavaScript ================================================== --> |
|||
<!-- Placed at the end of the document so the pages load faster --> |
|||
<script type="text/javascript" src="{% static 'bootstrap-sass/assets/javascripts/bootstrap.min.js' %}"></script> |
|||
|
|||
<script type="text/javascript" src="{% static 'jquery-ui/jquery-ui.min.js' %}"></script> |
|||
<script type="text/javascript" src="{% static 'jquery-ui/ui/i18n/datepicker-pt-BR.js' %}"></script> |
|||
|
|||
<script type="text/javascript" src="{% static 'js/jquery.runner.js' %}"></script> |
|||
<script type="text/javascript" src="{% static 'jquery-mask-plugin/dist/jquery.mask.js' %}"></script> |
|||
|
|||
<script src="{% static 'tinymce/tinymce.min.js' %}"></script> |
|||
<script type="text/javascript" src="{% static 'jsdiff/diff.min.js' %}"></script> |
|||
|
|||
<script type="text/javascript" src="{% static 'drunken-parrot-flat-ui/js/checkbox.js' %}"></script> |
|||
<script type="text/javascript" src="{% static 'drunken-parrot-flat-ui/js/radio.js' %}"></script> |
|||
|
|||
<script type="text/javascript" src="{% static 'js/app.js' %}"></script> |
|||
|
|||
<script type="text/javascript" src="{% static 'jquery-query-object/jquery.query-object.js' %}"></script> |
|||
|
|||
{% block extra_js %}{% endblock %} |
|||
|
|||
{% endblock foot_js %} |
|||
</body> |
|||
</html> |
|||
@ -0,0 +1,5 @@ |
|||
{% load i18n common_tags %} |
|||
- title: {% trans 'Início' %} |
|||
url: audienciapublica_detail |
|||
- title: {% trans 'Documento Acessório' %} |
|||
url: anexoaudienciapublica_list |
|||
@ -0,0 +1,10 @@ |
|||
{% load i18n compilacao_filters %} |
|||
|
|||
{% for message in messages %} |
|||
<div class="alert alert-{% if message.tags == 'error' %}danger{% else %}{{ message.tags }}{% endif %} alert-dismissible fade in" role="alert"> |
|||
<button type="button" class="close" data-dismiss="alert" aria-label="Close"> |
|||
<span class="glyphicon glyphicon-remove" aria-hidden="true"></span> |
|||
</button> |
|||
{{ message|safe }} |
|||
</div> |
|||
{% endfor %} |
|||
@ -1,6 +1,6 @@ |
|||
<fieldset> |
|||
<p align="justify"> |
|||
<strong>Ocorrências da Sessão: </strong> |
|||
{{object.ocorrenciasessao.conteudo|safe}} |
|||
{{object.ocorrenciasessao.conteudo|striptags|safe}} |
|||
</p> |
|||
</fieldset> |
|||
|
|||