diff --git a/compilacao/forms.py b/compilacao/forms.py index 8fe2f5a4c..498da9edd 100644 --- a/compilacao/forms.py +++ b/compilacao/forms.py @@ -1,21 +1,20 @@ -from crispy_forms.bootstrap import FormActions, StrictButton, FieldWithButtons +from crispy_forms.bootstrap import FieldWithButtons, FormActions, StrictButton from crispy_forms.helper import FormHelper -from crispy_forms.layout import Button, Field, Column, HTML, Layout, Div, Row,\ - Fieldset +from crispy_forms.layout import (HTML, Button, Column, Div, Field, Fieldset, + Layout, Row) from django import forms from django.core.exceptions import NON_FIELD_ERRORS from django.forms.models import ModelForm from django.utils.translation import ugettext_lazy as _ -from compilacao.models import (PARTICIPACAO_SOCIAL_CHOICES, Dispositivo, Nota, +from compilacao.models import (NOTAS_PUBLICIDADE_CHOICES, + PARTICIPACAO_SOCIAL_CHOICES, Dispositivo, Nota, Publicacao, TextoArticulado, TipoNota, TipoPublicacao, TipoTextoArticulado, TipoVide, - VeiculoPublicacao, Vide, - NOTAS_PUBLICIDADE_CHOICES) + VeiculoPublicacao, Vide) from sapl.layout import SaplFormLayout, to_column, to_row from sapl.utils import YES_NO_CHOICES - error_messages = { 'required': _('Este campo é obrigatório'), 'invalid': _('URL inválida.') diff --git a/compilacao/templatetags/compilacao_filters.py b/compilacao/templatetags/compilacao_filters.py index f52d75c19..544223d60 100644 --- a/compilacao/templatetags/compilacao_filters.py +++ b/compilacao/templatetags/compilacao_filters.py @@ -40,11 +40,14 @@ def nota_automatica(dispositivo, ta_pub_list): if dispositivo.ta_publicado is not None: d = dispositivo.dispositivo_atualizador.dispositivo_pai if dispositivo.texto == Dispositivo.TEXTO_PADRAO_DISPOSITIVO_REVOGADO: - return 'Revogado pelo %s - %s.' % (d, ta_pub_list[dispositivo.ta_publicado_id]) + return 'Revogado pelo %s - %s.' % ( + d, ta_pub_list[dispositivo.ta_publicado_id]) elif not dispositivo.dispositivo_substituido_id: - return 'Inclusão feita pelo %s - %s.' % (d, ta_pub_list[dispositivo.ta_publicado_id]) + return 'Inclusão feita pelo %s - %s.' % ( + d, ta_pub_list[dispositivo.ta_publicado_id]) else: - return 'Alteração feita pelo %s - %s.' % (d, ta_pub_list[dispositivo.ta_publicado_id]) + return 'Alteração feita pelo %s - %s.' % ( + d, ta_pub_list[dispositivo.ta_publicado_id]) return '' diff --git a/compilacao/urls.py b/compilacao/urls.py index 93653f379..b90eb215b 100644 --- a/compilacao/urls.py +++ b/compilacao/urls.py @@ -16,6 +16,7 @@ urlpatterns_compilacao = [ url(r'^(?P[0-9]+)/text$', views.TextView.as_view(), name='ta_text'), + url(r'^(?P[0-9]+)/text/vigencia/(?P.+)/$', views.TextView.as_view(), name='ta_vigencia'), @@ -85,17 +86,19 @@ urlpatterns_compilacao = [ url(r'^config/tipo-textoarticulado/(?P[0-9]+)/delete$', views.TipoTaDeleteView.as_view(), name='tipo_ta_delete'), - url(r'^config/tipo-nota/', + +] + +urlpatterns = [ + url(r'^ta/', include(urlpatterns_compilacao, 'compilacao', 'compilacao')), + + url(r'^ta/config/tipo-nota/', include(tipo_nota_crud.urls)), - url(r'^config/tipo-vide/', + url(r'^ta/config/tipo-vide/', include(tipo_vide_crud.urls)), - url(r'^config/tipo-publicacao/', + url(r'^ta/config/tipo-publicacao/', include(tipo_publicacao_crud.urls)), - url(r'^config/veiculo-publicacao/', + url(r'^ta/config/veiculo-publicacao/', include(veiculo_publicacao_crud.urls)), ] - -urlpatterns = [ - url(r'^ta/', include(urlpatterns_compilacao)), -] diff --git a/compilacao/views.py b/compilacao/views.py index cafe79402..d9f2cc602 100644 --- a/compilacao/views.py +++ b/compilacao/views.py @@ -1,13 +1,13 @@ +import sys from collections import OrderedDict from datetime import datetime, timedelta -import sys from braces.views import FormMessagesMixin from django import forms from django.contrib.auth.decorators import login_required from django.contrib.contenttypes.models import ContentType from django.core.signing import Signer -from django.core.urlresolvers import reverse, reverse_lazy +from django.core.urlresolvers import reverse_lazy from django.db.models import Q from django.http.response import (HttpResponse, HttpResponseRedirect, JsonResponse) @@ -29,7 +29,6 @@ from compilacao.models import (Dispositivo, Nota, VeiculoPublicacao, Vide) from sapl.crud import NO_ENTRIES_MSG, build_crud, make_pagination - DISPOSITIVO_SELECT_RELATED = ( 'tipo_dispositivo', 'ta_publicado', @@ -177,7 +176,8 @@ class IntegracaoTaView(TemplateView): ta.save() - return redirect(to=reverse_lazy('ta_text', kwargs={'ta_id': ta.pk})) + return redirect(to=reverse_lazy('compilacao:ta_text', + kwargs={'ta_id': ta.pk})) class Meta: abstract = True @@ -232,7 +232,7 @@ class TipoTaListView(ListView): @property def create_url(self): - return reverse_lazy('tipo_ta_create') + return reverse_lazy('compilacao:tipo_ta_create') class TipoTaCreateView(FormMessagesMixin, CreateView): @@ -252,11 +252,12 @@ class TipoTaCreateView(FormMessagesMixin, CreateView): return self.render_to_response(self.get_context_data(form=form)) def get_success_url(self): - return reverse_lazy('tipo_ta_detail', kwargs={'pk': self.object.id}) + return reverse_lazy('compilacao:tipo_ta_detail', + kwargs={'pk': self.object.id}) @property def cancel_url(self): - return reverse_lazy('tipo_ta_list') + return reverse_lazy('compilacao:tipo_ta_list') class TipoTaDetailView(CompMixin, DetailView): @@ -277,23 +278,26 @@ class TipoTaUpdateView(CompMixin, UpdateView): return self.render_to_response(self.get_context_data(form=form)) def get_success_url(self): - return reverse_lazy('tipo_ta_detail', kwargs={'pk': self.kwargs['pk']}) + return reverse_lazy('compilacao:tipo_ta_detail', + kwargs={'pk': self.kwargs['pk']}) @property def cancel_url(self): - return reverse_lazy('tipo_ta_detail', kwargs={'pk': self.kwargs['pk']}) + return reverse_lazy('compilacao:tipo_ta_detail', + kwargs={'pk': self.kwargs['pk']}) class TipoTaDeleteView(CompMixin, DeleteView): model = TipoTextoArticulado - template_name = "compilacao/confirm_delete.html" + template_name = "crud/confirm_delete.html" @property def detail_url(self): - return reverse_lazy('tipo_ta_detail', kwargs={'pk': self.kwargs['pk']}) + return reverse_lazy('compilacao:tipo_ta_detail', + kwargs={'pk': self.kwargs['pk']}) def get_success_url(self): - return reverse_lazy('tipo_ta_list') + return reverse_lazy('compilacao:tipo_ta_list') class TaListView(ListView): @@ -307,7 +311,7 @@ class TaListView(ListView): @property def create_url(self): - return reverse_lazy('ta_create') + return reverse_lazy('compilacao:ta_create') def get_context_data(self, **kwargs): context = super(TaListView, self).get_context_data(**kwargs) @@ -341,11 +345,12 @@ class TaCreateView(FormMessagesMixin, CreateView): form_invalid_message = _('O registro não foi criado.') def get_success_url(self): - return reverse_lazy('ta_detail', kwargs={'pk': self.object.id}) + return reverse_lazy('compilacao:ta_detail', + kwargs={'pk': self.object.id}) @property def cancel_url(self): - return reverse_lazy('ta_list') + return reverse_lazy('compilacao:ta_list') class TaUpdateView(CompMixin, UpdateView): @@ -362,23 +367,26 @@ class TaUpdateView(CompMixin, UpdateView): return self.render_to_response(self.get_context_data(form=form)) def get_success_url(self): - return reverse_lazy('ta_detail', kwargs={'pk': self.kwargs['pk']}) + return reverse_lazy('compilacao:ta_detail', + kwargs={'pk': self.kwargs['pk']}) @property def cancel_url(self): - return reverse_lazy('ta_detail', kwargs={'pk': self.kwargs['pk']}) + return reverse_lazy('compilacao:ta_detail', + kwargs={'pk': self.kwargs['pk']}) class TaDeleteView(CompMixin, DeleteView): model = TextoArticulado - template_name = "compilacao/confirm_delete.html" + template_name = "crud/confirm_delete.html" @property def detail_url(self): - return reverse_lazy('ta_detail', kwargs={'pk': self.kwargs['pk']}) + return reverse_lazy('compilacao:ta_detail', + kwargs={'pk': self.kwargs['pk']}) def get_success_url(self): - return reverse_lazy('ta_list') + return reverse_lazy('compilacao:ta_list') class TextView(ListView, CompMixin): @@ -750,7 +758,8 @@ class DispositivoEditView(TextEditView): if not dnext.exists(): dnext = [] - dnext[0] = d + dnext.append(d) + pais = [d.dispositivo_pai_id, ] else: if dnext[0].nivel > d.nivel: @@ -1413,8 +1422,8 @@ class ActionsEditView(ActionsEditMixin, TemplateView): class DispositivoSuccessUrlMixin(object): def get_success_url(self): - return reverse( - 'dispositivo', kwargs={ + return reverse_lazy( + 'compilacao:dispositivo', kwargs={ 'ta_id': self.kwargs[ 'ta_id'], 'dispositivo_id': self.kwargs[ @@ -1456,6 +1465,7 @@ class NotasCreateView(NotaMixin, CreateView): return super(NotasCreateView, self).get(request, *args, **kwargs) def post(self, request, *args, **kwargs): + self.object = None try: ta_id = kwargs.pop('ta_id') dispositivo_id = kwargs.pop('dispositivo_id') @@ -1721,7 +1731,7 @@ class PublicacaoListView(ListView): @property def create_url(self): return reverse_lazy( - 'ta_pub_create', + 'compilacao:ta_pub_create', kwargs={'ta_id': self.kwargs['ta_id']}) def get_queryset(self): @@ -1743,7 +1753,7 @@ class PublicacaoCreateView(FormMessagesMixin, CreateView): def get_success_url(self): return reverse_lazy( - 'ta_pub_detail', + 'compilacao:ta_pub_detail', kwargs={ 'pk': self.object.id, 'ta_id': self.kwargs['ta_id']}) @@ -1751,7 +1761,7 @@ class PublicacaoCreateView(FormMessagesMixin, CreateView): @property def cancel_url(self): return reverse_lazy( - 'ta_pub_list', + 'compilacao:ta_pub_list', kwargs={'ta_id': self.kwargs['ta_id']}) def get_initial(self): @@ -1776,7 +1786,7 @@ class PublicacaoUpdateView(CompMixin, UpdateView): return self.render_to_response(self.get_context_data(form=form)) def get_success_url(self): - return reverse_lazy('ta_pub_detail', + return reverse_lazy('compilacao:ta_pub_detail', kwargs={ 'pk': self.object.id, 'ta_id': self.kwargs['ta_id']}) @@ -1788,15 +1798,15 @@ class PublicacaoUpdateView(CompMixin, UpdateView): class PublicacaoDeleteView(CompMixin, DeleteView): model = Publicacao - template_name = "compilacao/confirm_delete.html" + template_name = "crud/confirm_delete.html" @property def detail_url(self): - return reverse_lazy('ta_pub_detail', + return reverse_lazy('compilacao:ta_pub_detail', kwargs={ 'pk': self.object.id, 'ta_id': self.kwargs['ta_id']}) def get_success_url(self): - return reverse_lazy('ta_pub_list', + return reverse_lazy('compilacao:ta_pub_list', kwargs={'ta_id': self.kwargs['ta_id']}) diff --git a/norma/views.py b/norma/views.py index 548cdde18..9a630a515 100644 --- a/norma/views.py +++ b/norma/views.py @@ -15,7 +15,6 @@ from .forms import NormaJuridicaForm from .models import (AssuntoNorma, LegislacaoCitada, NormaJuridica, TipoNormaJuridica) - assunto_norma_crud = build_crud( AssuntoNorma, 'assunto_norma_juridica', [ diff --git a/static/js/compilacao.js b/static/js/compilacao.js index 2a76a1acb..b36783c66 100644 --- a/static/js/compilacao.js +++ b/static/js/compilacao.js @@ -1,40 +1,40 @@ function initTinymce() { - tinymce.init({ - mode : "textareas", - force_br_newlines : false, - force_p_newlines : false, - forced_root_block : '', - plugins: ["table save code"], - menubar: "edit format table tools", - toolbar: "save | undo redo | styleselect | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent", - tools: "inserttable", - save_onsavecallback: onSubmitEditForm, - border_css: "/static/styles/compilacao_tinymce.css", - content_css: "/static/styles/compilacao_tinymce.css" - }); + tinymce.init({ + mode : "textareas", + force_br_newlines : false, + force_p_newlines : false, + forced_root_block : '', + plugins: ["table save code"], + menubar: "edit format table tools", + toolbar: "save | undo redo | styleselect | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent", + tools: "inserttable", + save_onsavecallback: onSubmitEditForm, + border_css: "/static/styles/compilacao_tinymce.css", + content_css: "/static/styles/compilacao_tinymce.css" + }); } function SetCookie(cookieName,cookieValue,nDays) { - var today = new Date(); - var expire = new Date(); - if (nDays==null || nDays==0) nDays=1; - expire.setTime(today.getTime() + 3600000*24*nDays); - document.cookie = cookieName+"="+escape(cookieValue) - + ";expires="+expire.toGMTString(); + var today = new Date(); + var expire = new Date(); + if (nDays==null || nDays==0) nDays=1; + expire.setTime(today.getTime() + 3600000*24*nDays); + document.cookie = cookieName+"="+escape(cookieValue) + + ";expires="+expire.toGMTString(); } function ReadCookie(cookieName) { - var theCookie=" "+document.cookie; - var ind=theCookie.indexOf(" "+cookieName+"="); - if (ind==-1) ind=theCookie.indexOf(";"+cookieName+"="); - if (ind==-1 || cookieName=="") return ""; - var ind1=theCookie.indexOf(";",ind+1); - if (ind1==-1) ind1=theCookie.length; - return unescape(theCookie.substring(ind+cookieName.length+2,ind1)); + var theCookie=" "+document.cookie; + var ind=theCookie.indexOf(" "+cookieName+"="); + if (ind==-1) ind=theCookie.indexOf(";"+cookieName+"="); + if (ind==-1 || cookieName=="") return ""; + var ind1=theCookie.indexOf(";",ind+1); + if (ind1==-1) ind1=theCookie.length; + return unescape(theCookie.substring(ind+cookieName.length+2,ind1)); } function insertWaitAjax(element) { - //jQuery(element).append('
'); - jQuery(element).append('
'); + //jQuery(element).append('
'); + jQuery(element).append('
'); } diff --git a/static/js/compilacao_edit.js b/static/js/compilacao_edit.js index 44ad142ba..a5f720e33 100644 --- a/static/js/compilacao_edit.js +++ b/static/js/compilacao_edit.js @@ -3,255 +3,255 @@ var editortype = "textarea"; var gets = 0; var onSubmitEditForm = function(event) { - var texto = ''; - var editorTiny = tinymce.get('editdi_texto'); - - if (editorTiny != null) - texto = editorTiny.getContent(); - else - texto = $('#editdi_texto').val(); - - var formData = { - 'csrfmiddlewaretoken' : $('input[name=csrfmiddlewaretoken]').val(), - 'texto' : texto - }; - - var url = $('.csform form').attr( "action_ajax" ); - $("#message_block").css("display", "block"); - - $.post(url, formData) - .done(function(data) { - - if (typeof data == "string") { - $('.dpt-selected').html(data); - clearEditSelected(); - reloadFunctionClicks(); - return; - } - - clearEditSelected(); - - if (data.pk != null) - refreshScreenFocusPk(data); - else { - alert('Erro na inserção!'); - flag_refresh_all = false; - } - - }).always(function() { - $("#message_block").css("display", "none"); - }); - if (event != null) - event.preventDefault(); + var texto = ''; + var editorTiny = tinymce.get('editdi_texto'); + + if (editorTiny != null) + texto = editorTiny.getContent(); + else + texto = $('#editdi_texto').val(); + + var formData = { + 'csrfmiddlewaretoken' : $('input[name=csrfmiddlewaretoken]').val(), + 'texto' : texto + }; + + var url = $('.csform form').attr( "action_ajax" ); + $("#message_block").css("display", "block"); + + $.post(url, formData) + .done(function(data) { + + if (typeof data == "string") { + $('.dpt-selected').html(data); + clearEditSelected(); + reloadFunctionClicks(); + return; + } + + clearEditSelected(); + + if (data.pk != null) + refreshScreenFocusPk(data); + else { + alert('Erro na inserção!'); + flag_refresh_all = false; + } + + }).always(function() { + $("#message_block").css("display", "none"); + }); + if (event != null) + event.preventDefault(); } var clickEditDispositivo = function(event) { - var _pk = event.currentTarget.getAttribute('pk'); - if ($('#dpt'+_pk).hasClass("dpt-selected")) { - clearEditSelected(); - return; - } - clearEditSelected(); - clickUpdateDispositivo(event); + var _pk = event.currentTarget.getAttribute('pk'); + if ($('#dpt'+_pk).hasClass("dpt-selected")) { + clearEditSelected(); + return; + } + clearEditSelected(); + clickUpdateDispositivo(event); } var clickUpdateDispositivo = function(event, __pk_refresh, __pk_edit, __action, flag_actions_vibible, flag_refresh_all) { - var pk_refresh = __pk_refresh; - var pk_edit = __pk_edit; - var _action = __action; - var _variacao = ''; - var _tipo_pk = ''; - var _perfil_pk = ''; - - if (event != null) { - pk_refresh = event.currentTarget.getAttribute('pk'); - _action = $(this).attr('action'); - _variacao = $(this).attr('variacao'); - _tipo_pk = $(this).attr('tipo_pk'); - _perfil_pk = $(this).attr('perfil_pk'); - } - - if (pk_edit == null) - pk_edit = pk_refresh; - - var url = ''; - if (_action == '') - return; - else if ( _action == null) { - url = pk_refresh+'/refresh?edit='+pk_edit; - } - else if (_action.startsWith('refresh')) { - var str = _action.split(':'); - if (str.length > 1) { - if(_action.endsWith('perfil')) { - url = '&perfil_pk='+_perfil_pk; - $("#message_block").css("display", "block"); - } - else { - editortype = str[1]; - SetCookie("editortype", editortype, 30) - } - } - url = pk_refresh+'/refresh?edit='+pk_edit+url; - - } - else if (_action.startsWith('add_')) { - - url = pk_refresh+'/actions?action='+_action; - url += '&tipo_pk='+_tipo_pk; - url += '&variacao='+_variacao; - - $("#message_block").css("display", "block"); - - } - else if (_action.startsWith('delete_')) { - var r = confirm("Confirma Exclusão deste dispositivo?"); - if (r == true) { - x = "You pressed OK!"; - } else { - return - } - url = pk_refresh+'/actions?action='+_action; - $("#message_block").css("display", "block"); - } - - $.get(url).done(function( data ) { - if ( _action == null || _action.startsWith('refresh')) { - - if (flag_refresh_all) { + var pk_refresh = __pk_refresh; + var pk_edit = __pk_edit; + var _action = __action; + var _variacao = ''; + var _tipo_pk = ''; + var _perfil_pk = ''; + + if (event != null) { + pk_refresh = event.currentTarget.getAttribute('pk'); + _action = $(this).attr('action'); + _variacao = $(this).attr('variacao'); + _tipo_pk = $(this).attr('tipo_pk'); + _perfil_pk = $(this).attr('perfil_pk'); + } + + if (pk_edit == null) + pk_edit = pk_refresh; + + var url = ''; + if (_action == '') + return; + else if ( _action == null) { + url = pk_refresh+'/refresh?edit='+pk_edit; + } + else if (_action.startsWith('refresh')) { + var str = _action.split(':'); + if (str.length > 1) { + if(_action.endsWith('perfil')) { + url = '&perfil_pk='+_perfil_pk; + $("#message_block").css("display", "block"); + } + else { + editortype = str[1]; + SetCookie("editortype", editortype, 30) + } + } + url = pk_refresh+'/refresh?edit='+pk_edit+url; + + } + else if (_action.startsWith('add_')) { + + url = pk_refresh+'/actions?action='+_action; + url += '&tipo_pk='+_tipo_pk; + url += '&variacao='+_variacao; + + $("#message_block").css("display", "block"); + + } + else if (_action.startsWith('delete_')) { + var r = confirm("Confirma Exclusão deste dispositivo?"); + if (r == true) { + x = "You pressed OK!"; + } else { + return + } + url = pk_refresh+'/actions?action='+_action; + $("#message_block").css("display", "block"); + } + + $.get(url).done(function( data ) { + if ( _action == null || _action.startsWith('refresh')) { + + if (flag_refresh_all) { if (flag_actions_vibible) clearEditSelected(); - $( '#dpt' + pk_refresh ).html( data); - } - else { - //console.log(pk_refresh + ' - '+pk_edit) - if (flag_actions_vibible == null || flag_actions_vibible) - clearEditSelected(); - - //$( '#dpt' + pk_refresh+' > .bloco' ).addClass('displaynone' ); - $( '#dpt' + pk_refresh ).prepend( data ); - } - - reloadFunctionClicks(); - - var _editortype = editortype; - if ( $('.edt-'+_editortype).length == 0) { - _editortype = 'construct'; - } - - if ( _editortype == 'tinymce' ) { - initTinymce(); - } - else if (_editortype == 'textarea') { - $('.csform form').submit(onSubmitEditForm); - } - else if (_editortype == 'construct') { - $('.csform .btn-salvar').parent().addClass("displaynone"); - $('.csform .btn-salvar, .csform .fields').addClass("displaynone"); - $('#dpt'+pk_refresh).css('min-height', $('.actions_right').height()*2); - $('.actions_inserts').removeClass('menu_flutuante'); - } - else if (_editortype == 'detail') { - $('.csform .btn-salvar').parent().removeClass("displaynone"); - $('.csform .btn-salvar, .csform .fields').removeClass("displaynone"); - $('#dpt'+pk_refresh).css('min-height', $('.actions_right').height()*2); - $('.actions_inserts').addClass('menu_flutuante'); - } - - $(".edt-"+_editortype).addClass('selected'); - //$(".container").addClass('class_color_container'); - - if (flag_actions_vibible == null || flag_actions_vibible) { - $('#dpt'+pk_edit).addClass('dpt-selected'); - $('html, body').animate({ - scrollTop: $('#dpt' + pk_edit ).offset().top - window.innerHeight / 9 - }, 0); - } - } - - else if (_action == 'add_next' || _action == 'add_in') { - clearEditSelected(); - if (data.pk != null) { - - if (data.alert != null) - alert(data.alert) - - refreshScreenFocusPk(data); - } - else { - alert('Erro na inserção!'); - } - } - else if (_action.startsWith('delete_')) { - $("#message_block").css("display", "block"); - clearEditSelected(); - if (data.pk != null) { - refreshScreenFocusPk(data); - } - else { - alert('Erro exclusão!'); - } - } - else { - clearEditSelected(); - reloadFunctionClicks(); - } - }).always(function() { - $("#message_block").css("display", "none"); - }); + $( '#dpt' + pk_refresh ).html( data); + } + else { + //console.log(pk_refresh + ' - '+pk_edit) + if (flag_actions_vibible == null || flag_actions_vibible) + clearEditSelected(); + + //$( '#dpt' + pk_refresh+' > .bloco' ).addClass('displaynone' ); + $( '#dpt' + pk_refresh ).prepend( data ); + } + + reloadFunctionClicks(); + + var _editortype = editortype; + if ( $('.edt-'+_editortype).length == 0) { + _editortype = 'construct'; + } + + if ( _editortype == 'tinymce' ) { + initTinymce(); + } + else if (_editortype == 'textarea') { + $('.csform form').submit(onSubmitEditForm); + } + else if (_editortype == 'construct') { + $('.csform .btn-salvar').parent().addClass("displaynone"); + $('.csform .btn-salvar, .csform .fields').addClass("displaynone"); + $('#dpt'+pk_refresh).css('min-height', $('.actions_right').height()*2); + $('.actions_inserts').removeClass('menu_flutuante'); + } + else if (_editortype == 'detail') { + $('.csform .btn-salvar').parent().removeClass("displaynone"); + $('.csform .btn-salvar, .csform .fields').removeClass("displaynone"); + $('#dpt'+pk_refresh).css('min-height', $('.actions_right').height()*2); + $('.actions_inserts').addClass('menu_flutuante'); + } + + $(".edt-"+_editortype).addClass('selected'); + //$(".container").addClass('class_color_container'); + + if (flag_actions_vibible == null || flag_actions_vibible) { + $('#dpt'+pk_edit).addClass('dpt-selected'); + $('html, body').animate({ + scrollTop: $('#dpt' + pk_edit ).offset().top - window.innerHeight / 9 + }, 0); + } + } + + else if (_action == 'add_next' || _action == 'add_in') { + clearEditSelected(); + if (data.pk != null) { + + if (data.alert != null) + alert(data.alert) + + refreshScreenFocusPk(data); + } + else { + alert('Erro na inserção!'); + } + } + else if (_action.startsWith('delete_')) { + $("#message_block").css("display", "block"); + clearEditSelected(); + if (data.pk != null) { + refreshScreenFocusPk(data); + } + else { + alert('Erro exclusão!'); + } + } + else { + clearEditSelected(); + reloadFunctionClicks(); + } + }).always(function() { + $("#message_block").css("display", "none"); + }); } function refreshScreenFocusPk(data) { - for (var pai = 0; pai < data.pai.length; pai++) - if (data.pai[pai] != -1) { - clickUpdateDispositivo(null, data.pai[pai], data.pk, 'refresh', pai == 0, true); - } - else { - href = location.href.split('#')[0] - location.href = href+'#'+data.pk - location.reload(true) - } + for (var pai = 0; pai < data.pai.length; pai++) + if (data.pai[pai] != -1) { + clickUpdateDispositivo(null, data.pai[pai], data.pk, 'refresh', pai == 0, true); + } + else { + href = location.href.split('#')[0] + location.href = href+'#'+data.pk + location.reload(true) + } } function clearEditSelected() { - $('.bloco' ).removeClass('displaynone' ); + $('.bloco' ).removeClass('displaynone' ); - $(".container").removeClass('class_color_container'); - tinymce.remove(); - $('.dpt-selected').removeClass('dpt-selected'); - $('.dpt').css('min-height', ''); - $('.csform').remove(); + $(".container").removeClass('class_color_container'); + tinymce.remove(); + $('.dpt-selected').removeClass('dpt-selected'); + $('.dpt').css('min-height', ''); + $('.csform').remove(); } function reloadFunctionClicks() { - $('.dpt .de, .btn-action, .btn-edit').off(); + $('.dpt .de, .btn-action, .btn-edit').off(); - $('.dpt .de, .btn-edit').on('click', clickEditDispositivo); + $('.dpt .de, .btn-edit').on('click', clickEditDispositivo); - $('.btn-action').on('click', clickUpdateDispositivo); + $('.btn-action').on('click', clickUpdateDispositivo); - $('#editdi_texto').focus(); + $('#editdi_texto').focus(); } $(document).ready(function() { - editortype = ReadCookie("editortype") + editortype = ReadCookie("editortype") - if (editortype == null || editortype == "") { - editortype = "textarea" - SetCookie("editortype", editortype, 30) - } + if (editortype == null || editortype == "") { + editortype = "textarea" + SetCookie("editortype", editortype, 30) + } - reloadFunctionClicks(); - $("#message_block").css("display", "none"); + reloadFunctionClicks(); + $("#message_block").css("display", "none"); - href = location.href.split('#') - if (href.length == 2) { - clickUpdateDispositivo(null, href[1], href[1], 'refresh', true); - } + href = location.href.split('#') + if (href.length == 2) { + clickUpdateDispositivo(null, href[1], href[1], 'refresh', true); + } }); diff --git a/static/js/compilacao_notas.js b/static/js/compilacao_notas.js index 00f0930b2..dd5a02c91 100644 --- a/static/js/compilacao_notas.js +++ b/static/js/compilacao_notas.js @@ -1,196 +1,200 @@ function onEventsDneExec(pk, model) { - $('html, body').animate({ - scrollTop: $('#dne' + pk ).offset().top - window.innerHeight / 5 - }, 300); - - refreshDatePicker() - - $('#dne'+pk+" #button-id-submit-form").click(onSubmitEditForm); - $('#dne'+pk+" .btn-close-container").click(function(){ - $(this).closest('.dne-nota').removeClass('dne-nota'); - $(this).closest('.dne-form').html(''); - }); - - if (model == 'nota') { - $('#dne'+pk+" select[name='tipo']").change(function(event) { - var url = ''; - url = 'text/'+pk+'/nota/create?action=modelo_nota&id_tipo='+this.value; - $.get(url).done(function( data ) { - $('#dne'+pk+" textarea[name='texto']").val(data); - }); - }); - } - else if (model == 'vide') { - $('#dne'+pk+" select[name='tipo_ta']").change(function(event) { - var url = ''; - url = 'text/'+pk+'/vide/create?action=get_tipos&tipo_ta='+this.value; - - $('#dne'+pk+" label[for='id_tipo_model']").html('Tipos de ' + this.children[this.selectedIndex].innerHTML); - - - var select = $('#dne'+pk+" select[name='tipo_model']"); - select.empty(); - $('').appendTo(select); - - $.get(url).done(function( data ) { - select.empty(); - for(var item in data) { - for (var i in data[item]) - $('').appendTo(select); - } - - - }); - }); - $('#dne'+pk+" input[name='num_norma'], " - + '#dne'+pk+" input[name='ano_norma'], " - + '#dne'+pk+" input[name='busca_dispositivo']" - ).change(onChangeParamNorma); - - $('#dne'+pk+" .btn-busca").click(onChangeParamNorma); - - onChangeParamNorma(); - } + $('html, body').animate({ + scrollTop: $('#dne' + pk ).offset().top - window.innerHeight / 5 + }, 300); + + refreshDatePicker() + + $('#dne'+pk+" #button-id-submit-form").click(onSubmitEditForm); + $('#dne'+pk+" .btn-close-container").click(function(){ + $(this).closest('.dne-nota').removeClass('dne-nota'); + $(this).closest('.dne-form').html(''); + }); + + if (model == 'nota') { + $('#dne'+pk+" select[name='tipo']").change(function(event) { + var url = ''; + url = 'text/'+pk+'/nota/create?action=modelo_nota&id_tipo='+this.value; + $.get(url).done(function( data ) { + $('#dne'+pk+" textarea[name='texto']").val(data); + }); + }); + } + else if (model == 'vide') { + $('#dne'+pk+" select[name='tipo_ta']").change(function(event) { + var url = ''; + url = 'text/'+pk+'/vide/create?action=get_tipos&tipo_ta='+this.value; + + $('#dne'+pk+" label[for='id_tipo_model']").html('Tipos de ' + this.children[this.selectedIndex].innerHTML); + + + var select = $('#dne'+pk+" select[name='tipo_model']"); + select.empty(); + $('').appendTo(select); + + $.get(url).done(function( data ) { + select.empty(); + for(var item in data) { + for (var i in data[item]) + $('').appendTo(select); + } + + + }); + }); + $('#dne'+pk+" input[name='num_norma'], " + + '#dne'+pk+" input[name='ano_norma'], " + + '#dne'+pk+" input[name='busca_dispositivo']" + ).change(onChangeParamNorma); + + $('#dne'+pk+" .btn-busca").click(onChangeParamNorma); + + onChangeParamNorma(); + } } var onChangeParamNorma = function(event) { - var tipo_ta = $("select[name='tipo_ta']").val(); - var tipo_model = $("select[name='tipo_model']").val(); - var num_ta = $("input[name='num_ta']").val(); - var ano_ta = $("input[name='ano_ta']").val(); - var busca_dispositivo = $("input[name='busca_dispositivo']").val(); - var dispositivo_ref = $("#id_dispositivo_ref").val(); - $('#id_dispositivo_ref').remove(); - - if (dispositivo_ref == null) - dispositivo_ref = '' - - var url = ''; - var pk = $("select[name='tipo_ta']").closest('.dne').attr('pk') - - var formData = { - 'tipo_ta' : tipo_ta, - 'tipo_model' : tipo_model, - 'num_ta' : num_ta, - 'ano_ta' : ano_ta, - 'busca' : busca_dispositivo, - 'tipo_form' : 'radio', - 'initial_ref' : dispositivo_ref - }; - - url = 'text/search'; - $('.container-busca').html(''); - insertWaitAjax('.container-busca') - $.get(url, formData).done(function( data ) { - $('.container-busca').html(data); - $("input[name='dispositivo_ref']").first().prop('checked', true); - }); + var tipo_ta = $("select[name='tipo_ta']").val(); + var tipo_model = $("select[name='tipo_model']").val(); + var num_ta = $("input[name='num_ta']").val(); + var ano_ta = $("input[name='ano_ta']").val(); + var busca_dispositivo = $("input[name='busca_dispositivo']").val(); + var dispositivo_ref = $("#id_dispositivo_ref").val(); + $('#id_dispositivo_ref').remove(); + + if (dispositivo_ref == null) + dispositivo_ref = '' + + var url = ''; + var pk = $("select[name='tipo_ta']").closest('.dne').attr('pk') + + var formData = { + 'tipo_ta' : tipo_ta, + 'tipo_model' : tipo_model, + 'num_ta' : num_ta, + 'ano_ta' : ano_ta, + 'busca' : busca_dispositivo, + 'tipo_form' : 'radio', + 'initial_ref' : dispositivo_ref + }; + + url = 'text/search'; + $('.container-busca').html(''); + insertWaitAjax('.container-busca') + $.get(url, formData).done(function( data ) { + $('.container-busca').html(data); + $("input[name='dispositivo_ref']").first().prop('checked', true); + }); } var onSubmitEditForm = function(event) { - var url = ''; - var model = 'nota'; - var id_edit = null; - var id_dispositivo = $('#id_dispositivo').val(); - - if (id_dispositivo == null) { // trata-se de um vide - $('#id_dispositivo_ref').remove(); - id_dispositivo = $('#id_dispositivo_base').val(); - model='vide'; - } - - id_edit = $('#id_pk').val(); - url = 'text/'+id_dispositivo+'/'+model+'/' - if (id_edit == null || id_edit == '') - url += 'create'; - else - url += id_edit+'/edit'; - - console.log($('#dne'+id_dispositivo+" form").serialize()); - - $.post( url, $('#dne'+id_dispositivo+" form").serialize(), function(data) { - - if (typeof data == "string") { - if (data.indexOf('= 0) { - $('#dne'+id_dispositivo+' .dne-form').html(data); - onEventsDneExec(id_dispositivo, model); - } - else { - $('#dne'+id_dispositivo+' .dne-form').closest('.dpt').html(data) - onReadyNotasVides(); - - $('html, body').animate({ - scrollTop: $('#dne' + id_dispositivo ).offset().top - window.innerHeight / 3 - }, 300); - - } - } - } - ); + var url = ''; + var model = 'nota'; + var id_edit = null; + var id_dispositivo = $('#id_dispositivo').val(); + + if (id_dispositivo == null) { // trata-se de um vide + $('#id_dispositivo_ref').remove(); + id_dispositivo = $('#id_dispositivo_base').val(); + model='vide'; + } + + id_edit = $('#id_pk').val(); + url = 'text/'+id_dispositivo+'/'+model+'/' + if (id_edit == null || id_edit == '') + url += 'create'; + else + url += id_edit+'/edit'; + + console.log($('#dne'+id_dispositivo+" form").serialize()); + + $.post( url, $('#dne'+id_dispositivo+" form").serialize(), function(data) { + + if (typeof data == "string") { + if (data.indexOf('= 0) { + $('#dne'+id_dispositivo+' .dne-form').html(data); + onEventsDneExec(id_dispositivo, model); + } + else { + $('#dne'+id_dispositivo+' .dne-form').closest('.dpt').html(data) + onReadyNotasVides(); + try { + $('html, body').animate({ + scrollTop: $('#dne' + id_dispositivo ).offset().top - window.innerHeight / 3 + }, 300); + } + catch(err) { + console.log(err.message); + } + + } + } + } + ); } var onDelete = function(event) { - var model = $(event).attr('model'); + var model = $(event).attr('model'); - var id_dispositivo = $(event).closest('.dn').attr('pk'); - var id_delete = $(event).attr('pk'); - var url = 'text/'+id_dispositivo+'/'+model+'/'+id_delete+'/delete'; + var id_dispositivo = $(event).closest('.dn').attr('pk'); + var id_delete = $(event).attr('pk'); + var url = 'text/'+id_dispositivo+'/'+model+'/'+id_delete+'/delete'; - $.get( url, function(data) { - $('#dne'+id_dispositivo+' .dne-form').closest('.dpt').html(data) - onReadyNotasVides(); - } - ); + $.get( url, function(data) { + $('#dne'+id_dispositivo+' .dne-form').closest('.dpt').html(data) + onReadyNotasVides(); + } + ); } function getForm(_this) { - var url = ''; - var model = $(_this).attr('model'); - var id_dispositivo = $('.dne-nota .dne-form').closest('.dne').attr('pk'); - if (id_dispositivo != null) { - $('#dne'+id_dispositivo).removeClass('dne-nota'); - $('#dne'+id_dispositivo+' .dne-form').html(''); - } - - if (_this.className.indexOf('create') >= 0 ) { - id_dispositivo = $(_this).attr('pk'); - url = 'text/'+id_dispositivo+'/'+model+'/create'; - } - else if (_this.className.indexOf('edit') >= 0 ) { - var id_edit = $(_this).attr('pk'); - id_dispositivo = $(_this).closest('.dn').attr('pk'); - url = 'text/'+id_dispositivo+'/'+model+'/'+id_edit+'/edit' - } - - $('#dne'+id_dispositivo).addClass('dne-nota'); - - $.get(url).done(function( data ) { - $('#dne'+id_dispositivo+' .dne-form').html(data); - onEventsDneExec(id_dispositivo, model); - }).fail(function() { - onReadyNotasVides(); - }); + var url = ''; + var model = $(_this).attr('model'); + var id_dispositivo = $('.dne-nota .dne-form').closest('.dne').attr('pk'); + if (id_dispositivo != null) { + $('#dne'+id_dispositivo).removeClass('dne-nota'); + $('#dne'+id_dispositivo+' .dne-form').html(''); + } + + if (_this.className.indexOf('create') >= 0 ) { + id_dispositivo = $(_this).attr('pk'); + url = 'text/'+id_dispositivo+'/'+model+'/create'; + } + else if (_this.className.indexOf('edit') >= 0 ) { + var id_edit = $(_this).attr('pk'); + id_dispositivo = $(_this).closest('.dn').attr('pk'); + url = 'text/'+id_dispositivo+'/'+model+'/'+id_edit+'/edit' + } + + $('#dne'+id_dispositivo).addClass('dne-nota'); + + $.get(url).done(function( data ) { + $('#dne'+id_dispositivo+' .dne-form').html(data); + onEventsDneExec(id_dispositivo, model); + }).fail(function() { + onReadyNotasVides(); + }); } function onReadyNotasVides() { - $('.dne-nota').removeClass('dne-nota'); - $('.dne-form').html(''); + $('.dne-nota').removeClass('dne-nota'); + $('.dne-form').html(''); - $('.dne .btn-action').off(); - $('.dn .btn-action').off(); + $('.dne .btn-action').off(); + $('.dn .btn-action').off(); - $('.dne .btn-action, .dn .btn-action').not('.btn-nota-delete').not('.btn-vide-delete').click(function(){ - getForm(this); - }); + $('.dne .btn-action, .dn .btn-action').not('.btn-nota-delete').not('.btn-vide-delete').click(function(){ + getForm(this); + }); - $('.dn .btn-nota-delete, .dn .btn-vide-delete').click(function(){ - onDelete(this); - }); + $('.dn .btn-nota-delete, .dn .btn-vide-delete').click(function(){ + onDelete(this); + }); } $(document).ready(function() { - onReadyNotasVides() + onReadyNotasVides() }); diff --git a/static/js/compilacao_view.js b/static/js/compilacao_view.js index 5a68573ad..f83ab3311 100644 --- a/static/js/compilacao_view.js +++ b/static/js/compilacao_view.js @@ -24,27 +24,27 @@ function isElementInViewport (el) { } function textoMultiVigente(item, diff) { - var elv = null; - var ldpts = $(".dptt") - for (var i = 0; i < ldpts.length; i++) { - if ($(ldpts[i]).hasClass('displaynone')) - continue; - if (isElementInViewport( ldpts[i])) { + var elv = null; + var ldpts = $(".dptt") + for (var i = 0; i < ldpts.length; i++) { + if ($(ldpts[i]).hasClass('displaynone')) + continue; + if (isElementInViewport( ldpts[i])) { if (i+1 < ldpts.length) - elv = ldpts[i+1]; + elv = ldpts[i+1]; else { elv = ldpts[i]; } - break; - } - } + break; + } + } - $(".cp .tipo-vigencias a").removeClass("selected") - $(item).addClass("selected") - $(".dptt.desativado").removeClass("displaynone"); - $(".dtxt").removeClass("displaynone"); - $(".dtxt.diff").remove(); - $(".link_alterador").removeClass("displaynone"); + $(".cp .tipo-vigencias a").removeClass("selected") + $(item).addClass("selected") + $(".dptt.desativado").removeClass("displaynone"); + $(".dtxt").removeClass("displaynone"); + $(".dtxt.diff").remove(); + $(".link_alterador").removeClass("displaynone"); if (diff) { $(".dtxt[id^='da'").each(function() { @@ -103,65 +103,65 @@ function textoMultiVigente(item, diff) { } if (elv) { - $('html, body').animate({ - scrollTop: $(elv).parent().offset().top - 60 - }, 0); + $('html, body').animate({ + scrollTop: $(elv).parent().offset().top - 60 + }, 0); } } function textoVigente(item, link) { - var elv = null; - var ldpts = $(".dptt") - for (var i = 0; i < ldpts.length; i++) { - if ($(ldpts[i]).hasClass('displaynone')) - continue; - if (isElementInViewport( ldpts[i])) { + var elv = null; + var ldpts = $(".dptt") + for (var i = 0; i < ldpts.length; i++) { + if ($(ldpts[i]).hasClass('displaynone')) + continue; + if (isElementInViewport( ldpts[i])) { if (i+1 < ldpts.length) - elv = ldpts[i+1]; + elv = ldpts[i+1]; else { elv = ldpts[i]; } - break; - } - } - - $(".cp .tipo-vigencias a").removeClass("selected") - $(item).addClass("selected") - - $(".dptt.desativado").addClass("displaynone"); - $(".link_alterador").removeClass("displaynone"); - if (!link) - $(".link_alterador").addClass("displaynone"); - - if (elv) { - $('html, body').animate({ - scrollTop: $(elv).parent().offset().top - 60 - }, 0); + break; + } + } + + $(".cp .tipo-vigencias a").removeClass("selected") + $(item).addClass("selected") + + $(".dptt.desativado").addClass("displaynone"); + $(".link_alterador").removeClass("displaynone"); + if (!link) + $(".link_alterador").addClass("displaynone"); + + if (elv) { + $('html, body').animate({ + scrollTop: $(elv).parent().offset().top - 60 + }, 0); } } $(document).ready(function() { setTimeout(function() { - var href = location.href.split('#') - if (href.length == 2) { - $('html, body').animate({ + var href = location.href.split('#') + if (href.length == 2) { + $('html, body').animate({ scrollTop: $('#dptt' + href[1] ).offset().top - window.innerHeight / 9 }, 0); } }, 100); - $("#btn_font_menos").click(function() { - $(".dpt").css("font-size", "-=1"); - }); - $("#btn_font_mais").click(function() { - $(".dpt").css("font-size", "+=1"); - }); + $("#btn_font_menos").click(function() { + $(".dpt").css("font-size", "-=1"); + }); + $("#btn_font_mais").click(function() { + $(".dpt").css("font-size", "+=1"); + }); - $(".dpt").each(function() { + $(".dpt.bloco_alteracao .dpt").each(function() { var nivel = parseInt($(this).attr('nivel')); - $(this).css('z-index', 20-nivel) + $(this).css('z-index', 15-nivel) }); }); diff --git a/static/styles/compilacao.scss b/static/styles/compilacao.scss index fc2dadcd9..d4b79b424 100644 --- a/static/styles/compilacao.scss +++ b/static/styles/compilacao.scss @@ -3,1299 +3,1299 @@ $color_actions_border: #CCC; $color_buttons: #2980B9; @mixin background-top-down($top, $bottom) { - background-image: -webkit-linear-gradient(top, $top, $bottom); - background-image: -moz-linear-gradient(top, $top, $bottom); - background-image: -ms-linear-gradient(top, $top, $bottom); - background-image: -o-linear-gradient(top, $top, $bottom); - background-image: linear-gradient(to bottom, $top, $bottom); + background-image: -webkit-linear-gradient(top, $top, $bottom); + background-image: -moz-linear-gradient(top, $top, $bottom); + background-image: -ms-linear-gradient(top, $top, $bottom); + background-image: -o-linear-gradient(top, $top, $bottom); + background-image: linear-gradient(to bottom, $top, $bottom); } @mixin border-radius($radius) { - -webkit-border-radius: $radius; - -moz-border-radius: $radius; - -ms-border-radius: $radius; - -o-border-radius: $radius; - border-radius: $radius; + -webkit-border-radius: $radius; + -moz-border-radius: $radius; + -ms-border-radius: $radius; + -o-border-radius: $radius; + border-radius: $radius; } @mixin placeholder($color, $opacity, $fontsize, $fontweight) { - &::-webkit-input-placeholder { - color: $color !important; - opacity: $opacity; - font-size:$fontsize; - font-weight: $fontweight; - } - &::-moz-placeholder { - color: $color !important; - opacity: $opacity; - font-size:$fontsize; - font-weight: $fontweight; - } - &::-moz-placeholder { - color: $color !important; - opacity: $opacity; - font-size:$fontsize; - font-weight: $fontweight; - } - &:-ms-input-placeholder { - color: $color !important; - opacity: $opacity; - font-size:$fontsize; - font-weight: $fontweight; - } + &::-webkit-input-placeholder { + color: $color !important; + opacity: $opacity; + font-size:$fontsize; + font-weight: $fontweight; + } + &::-moz-placeholder { + color: $color !important; + opacity: $opacity; + font-size:$fontsize; + font-weight: $fontweight; + } + &::-moz-placeholder { + color: $color !important; + opacity: $opacity; + font-size:$fontsize; + font-weight: $fontweight; + } + &:-ms-input-placeholder { + color: $color !important; + opacity: $opacity; + font-size:$fontsize; + font-weight: $fontweight; + } } a:link:after, a:visited:after { - content: ""; + content: ""; } @mixin li_flutuante() { - & > ul { - transform: translateY(30px); - transition: transform 0.1s linear, opacity 0.1s linear, clip 0s 0.3s; - clip: rect(0, 0, 0, 0); - opacity: 0; - position:absolute; - margin-left: 0.5em; - box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.19), 0px 2px 6px rgba(0, 0, 0, 0.23); - - -webkit-transition-delay: 0.4s; /* Safari */ - transition-delay: 0.4s; - li { - a { - border-right: 0px !important; - } - - - &:first-child { - - &::before { - border-width: 0.375rem; - border-style: inset inset solid; - content: ""; - display: block; - height: 0px; - width: 0px; - border-color: transparent transparent #3385CA; - position: absolute; - top: -0.71rem; - left: 0.9375rem; - } - &:hover::before { - border-color: transparent transparent #0A5EA4; - } - } + & > ul { + transform: translateY(30px); + transition: transform 0.1s linear, opacity 0.1s linear, clip 0s 0.3s; + clip: rect(0, 0, 0, 0); + opacity: 0; + position:absolute; + margin-left: 0.5em; + box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.19), 0px 2px 6px rgba(0, 0, 0, 0.23); + + -webkit-transition-delay: 0.4s; /* Safari */ + transition-delay: 0.4s; + li { + a { + border-right: 0px !important; + } + + + &:first-child { + + &::before { + border-width: 0.375rem; + border-style: inset inset solid; + content: ""; + display: block; + height: 0px; + width: 0px; + border-color: transparent transparent #3385CA; + position: absolute; + top: -0.71rem; + left: 0.9375rem; } - // This bridges the gap between the top bar and a dropdown. - &::after { - content: ""; - position: absolute; - z-index: -1; - left: 0; - top: rem-calc(-25px); - height: rem-calc(25px); - width: 100%; - // This transition is for hover-on. - transition: all 0.3s cubic-bezier(0.55,0,0.1,1); + &:hover::before { + border-color: transparent transparent #0A5EA4; } + } + } + // This bridges the gap between the top bar and a dropdown. + &::after { + content: ""; + position: absolute; + z-index: -1; + left: 0; + top: rem-calc(-25px); + height: rem-calc(25px); + width: 100%; + // This transition is for hover-on. + transition: all 0.3s cubic-bezier(0.55,0,0.1,1); } - &:hover > ul { + } + &:hover > ul { - transform: translateY(7px); - // This transition is actually for when we hover-out of the dropdown. - transition: transform 0.4s linear, - opacity 0.4s linear, - clip 0s 0.2s; - opacity: 1; - clip: rect(-100px, 2000px, 2000px, -100px); + transform: translateY(7px); + // This transition is actually for when we hover-out of the dropdown. + transition: transform 0.4s linear, + opacity 0.4s linear, + clip 0s 0.2s; + opacity: 1; + clip: rect(-100px, 2000px, 2000px, -100px); - } + } } .test_import:nth-child(even) { - background-color: #ccc; + background-color: #ccc; } #message_block { - display: block; - position: fixed; - top: 0; - bottom: 0; - left: 0; - right: 0; - background-color: rgba(220, 220, 220, 0.75); - z-index:99; - - #msg{ - position: relative; - margin: 20% auto; - padding: 1.2em 2em; - max-width: 600px; - text-align: center; - font-size: 1.5em; - color: #677; - - border: 1px solid #eee; - background-color: #fff !important; - box-shadow: 0 1px 2px #999; - } + display: block; + position: fixed; + top: 0; + bottom: 0; + left: 0; + right: 0; + background-color: rgba(220, 220, 220, 0.75); + z-index:99; + + #msg{ + position: relative; + margin: 20% auto; + padding: 1.2em 2em; + max-width: 600px; + text-align: center; + font-size: 1.5em; + color: #677; + + border: 1px solid #eee; + background-color: #fff !important; + box-shadow: 0 1px 2px #999; + } } .cp { + .desativado, .desativado * { + text-decoration: line-through; + color: #999 !important; + + table, table td { + border: 1px dotted #ccc; + } + } + + a { + text-decoration: none; + cursor: pointer; + } + .diff { .desativado, .desativado * { - text-decoration: line-through; - color: #999 !important; + text-decoration: line-through; + color: #ddd !important; + font-size: 90%; + } + .added { + color: #04DE2C; + } + } - table, table td { - border: 1px dotted #ccc; - } + .dpt { + font-size:1em; + transition: all 0.2s ease-in-out; + position: relative; + + + .ementa { + padding: 4em 0em 3em 35%; + font-weight: bold; } - a { - text-decoration: none; - cursor: pointer; + .titulo_generico { + text-align: center; + font-weight: bold; + margin-bottom: 1em; + font-size: 1.5em; + margin-top: 3em; } - .diff { - .desativado, .desativado * { - text-decoration: line-through; - color: #ddd !important; - font-size: 90%; - } - .added { - color: #04DE2C; - } + + .anexo, + .disp_preliminares, + .disp_gerais, + .disp_transitorias, + .disp_finais, + .parte, + .livro { + @extend .titulo_generico; } - .dpt { - font-size:1em; - transition: all 0.2s ease-in-out; + .titulo { + @extend .titulo_generico; + margin-top: 2em; + } + + .capitulo { + @extend .titulo_generico; + margin-top: 1.5em; + font-size: 1.3em; + } + + .secao { + @extend .titulo_generico; + margin-top: 1.2em; + margin-bottom: 0.7em; + font-size: 1.2em; + } + + .subsecao, + .itemsecao { + @extend .titulo_generico; + margin-top: 1em; + margin-bottom: 0.6em; + font-size: 1.2em; + font-style: italic; + } + + .artigo { + font-size: 1.15em; + float:left; + .dptt { position: relative; + } + } + .caput { + margin-top: 0.3333em; + font-size: 1.15em; + } - .ementa { - padding: 4em 0em 3em 35%; - font-weight: bold; - } + .paragrafo { + padding-left: 1.5em; + font-size: 1.1em; + margin-top: 0.2222em; + } - .titulo_generico { - text-align: center; - font-weight: bold; - margin-bottom: 1em; - font-size: 1.5em; - margin-top: 3em; - } + .inciso { + font-size: 1.1em; + padding-left: 2.5em; + margin-top: 0.1667em; + } - .anexo, - .disp_preliminares, - .disp_gerais, - .disp_transitorias, - .disp_finais, - .parte, - .livro { - @extend .titulo_generico; - } + .alinea { + font-size: 1.0em; + padding-left: 3.5em; + margin-top: 2px; + } - .titulo { - @extend .titulo_generico; - margin-top: 2em; - } + .item { + font-size: 1.0em; + padding-left: 4.5em; + margin-top: 2px; + } - .capitulo { - @extend .titulo_generico; - margin-top: 1.5em; - font-size: 1.3em; - } - .secao { - @extend .titulo_generico; - margin-top: 1.2em; - margin-bottom: 0.7em; - font-size: 1.2em; - } - .subsecao, - .itemsecao { - @extend .titulo_generico; - margin-top: 1em; - margin-bottom: 0.6em; - font-size: 1.2em; - font-style: italic; - } + .bloco_alteracao { + padding-left: 10%; + font-style: italic; + color: #018; - .artigo { - font-size: 1.15em; - float:left; - .dptt { - position: relative; - } - } + a { + text-decoration: underline; + } - .caput { - margin-top: 0.3333em; - font-size: 1.15em; - } + a, table, table td { + color: #018 !important; + } + } - .paragrafo { - padding-left: 1.5em; - font-size: 1.1em; - margin-top: 0.2222em; - } + .dn { /* Notas de Dispositivo*/ + font-weight: normal; + position: relative; + font-size: 70%; + p, ul { + font-weight: normal; + margin: 0 0 0 0; + list-style: none; + padding: 0; + } - .inciso { - font-size: 1.1em; - padding-left: 2.5em; - margin-top: 0.1667em; + .dnl { /* Lista Notas de Dispositivo*/ + display: block; + text-align: left !important; + + * { + display: inline; } - .alinea { - font-size: 1.0em; - padding-left: 3.5em; - margin-top: 2px; + .bullet { + padding: 0 0.333em; + display: inline-block; } + .dnli { + min-height: 2.5em; + &:hover { + ul { + transition: opacity 0.5s linear, clip 0s 0.3s; + clip: auto; + opacity: 1; + background: rgba(230,230,230, 0.9); + } + } - .item { - font-size: 1.0em; - padding-left: 4.5em; - margin-top: 2px; + ul { + transition: opacity 0.5s linear, clip 0s 0.3s; + clip: rect(0, 0, 0, 0); + opacity: 0; + position: absolute; + background: transparent; + right: 0; + padding: 0.2em 0.5em 0em 0.5em; + border: 1px solid #c7e3d3; + border-top: 0px; + font-size: 1.5rem; + li { + display: table-cell; + color: #aaa; + + &:hover { + color: #787; + a{ + color: #27AE60 !important; + } + } + .nowner { + color: #27AE60 !important; + } + } + } + + .ntitulo { + font-weight: bold; + color: #03A203; + text-decoration: none; + a { + color: #294 !important; + } + } + .ntexto { + + color: #06D806; + a{ + color: #03A203 !important; + } + } } + &:hover { + display: block; + + * { + display: block; + } + & > .bullet { + display: none; + } + .dnli { + margin-top: 0.5em; + border-top: 1px solid #c7e3d3; + } + } + } + } - .bloco_alteracao { - padding-left: 10%; - font-style: italic; - color: #018; + .dptt { + & > a { + color: #444444; + &.link_alterador { + color: #2980B9; + font-size: 0.75em; + &:hover { + text-decoration: underline; + } + } + &.desativado { + @extend .desativado; + } + } + + .dne { + position: absolute; + display: block; + right: 0; + left: 0; + top: 0; + height: 0; + transform: scaleX(0); + transform-origin: right; + transition: all 0.3s ease; + border-top: 1px solid $color_buttons; + ul.btns-action { + list-style: none; + padding: 0; + position: absolute; + right: 0; + background-color: $color_buttons; + li { + float: left; + &:hover { + background-color: rgba(#000, 0.1); + } a { - text-decoration: underline; + color: white; + padding: 0.15em 1em 0; + display: inline-block; + &:hover { + } } + } + } + } - a, table, table td { - color: #018 !important; - } + .dne-nota { + position: relative; + transform: scaleX(1); + height: auto; + border-top: 0px; + + ul.btns-action { + display: none; } - .dn { /* Notas de Dispositivo*/ - font-weight: normal; - position: relative; - font-size: 70%; - p, ul { - font-weight: normal; - margin: 0 0 0 0; - list-style: none; - padding: 0; - } + .dne-form { + margin: 1em -2em 0em; + text-align: left; + font-size: 1.6rem; - .dnl { /* Lista Notas de Dispositivo*/ - display: block; - text-align: left !important; + .container-busca { + ul{ + list-style: none; + display: table; + margin-left: 0; + border-collapse:separate; + border-spacing:1px; + padding: 0px; + + li { + display: table-row; + + &:nth-child(even) { + background-color: rgba(0, 0, 0, 0.05); - * { - display: inline; } + &:nth-child(odd) { + background-color: rgba(0, 0, 0, 0.08); - .bullet { - padding: 0 0.333em; - display: inline-block; } - .dnli { - min-height: 2.5em; - &:hover { - ul { - transition: opacity 0.5s linear, clip 0s 0.3s; - clip: auto; - opacity: 1; - background: rgba(230,230,230, 0.9); - } - } - - ul { - transition: opacity 0.5s linear, clip 0s 0.3s; - clip: rect(0, 0, 0, 0); - opacity: 0; - position: absolute; - background: transparent; - right: 0; - padding: 0.2em 0.5em 0em 0.5em; - border: 1px solid #c7e3d3; - border-top: 0px; - font-size: 1.5rem; - li { - display: table-cell; - color: #aaa; - - &:hover { - color: #787; - a{ - color: #27AE60 !important; - } - } - .nowner { - color: #27AE60 !important; - } - } - } - - .ntitulo { - font-weight: bold; - color: #03A203; - text-decoration: none; - a { - color: #294 !important; - } - } - .ntexto { - - color: #06D806; - a{ - color: #03A203 !important; - } - } + + .iteminput { + display: table-cell; + padding: 0.5em; + vertical-align: middle; + text-align: center; + + input { + margin: 0; + } } - &:hover { - display: block; - - - * { - display: block; - } - & > .bullet { - display: none; - } - .dnli { - margin-top: 0.5em; - border-top: 1px solid #c7e3d3; - } + + .itemlabel { + display: table-cell; + padding: 0.5em; + vertical-align: middle; + width: 100%; + label { + line-height: 1; + font-family: "SourceSansPro", Helvetica, Arial, sans-serif; + } } + } + } + .ta_title { + padding: 0.15em 0.7em; + background-color: rgba(0, 0, 0, 0.15); + margin: 0.1em 0.08em 0 0.1em; } + .nomenclatura_heranca { + font-size: 90%; + color: #057dba; + } + } } + } - .dptt { + &:hover { + .dne { + height: 0.1667rem; + transform: scaleX(1); + transition-delay: 1s; + } + .dne-nota { + height: auto; + transition-delay: 0s; + } + } - & > a { - color: #444444; - &.link_alterador { - color: #2980B9; - font-size: 0.75em; - &:hover { - text-decoration: underline; - } - } - &.desativado { - @extend .desativado; - } - } + .dne-nota111 { + box-shadow: -4px 15px 15px rgba(0, 0, 0, 0.1), 0px 6px 6px rgba(0, 0, 0, 0.23); + @include background-top-down(#f5f5f5, #eee); + position: relative; + transform: scaleX(1); + height: auto; + left: 0; + right: 0; + margin: 1em 0 2em 0; + padding: 0em; + border: 0px; + z-index: 19; + ul.btns-action { + display: none; + } - .dne { - position: absolute; - display: block; - right: 0; - left: 0; - top: 0; - height: 0; - transform: scaleX(0); - transform-origin: right; - transition: all 0.3s ease; - border-top: 1px solid $color_buttons; - ul.btns-action { - list-style: none; - padding: 0; - position: absolute; - right: 0; - background-color: $color_buttons; - li { - float: left; - &:hover { - background-color: rgba(#000, 0.1); - } - a { - color: white; - padding: 0.15em 1em 0; - display: inline-block; - &:hover { - } - } - } - } + .dne-form111 { + .asterisk { + color: transparent; + &::before { + color: red; + content: "\2b25"; + padding: 0 0.333em; + vertical-align: super; + } + } + .title_form { + font-size: 2.5em; + padding: 0.5em 0.3em 0.3em; + background: #e5e5e5; + color: #777; + margin-bottom: 0.4em; + border-bottom: 1px solid #aaa; + } + fieldset { + border: 0px; + } + select { + background: url(/static/img/down_arrow_select.jpg) no-repeat right #ddd; + border: 0px; + outline:0px; + } + .alert-box { + margin-bottom: 0; + } + .row:first-of-type { + margin-top: 1em; + display: inline-block; + } + .columns { + padding: 0 0.5rem; + } + .input { + border: 0px; + border-bottom: 1px solid #ccc; + margin: 0 0 0 0 ; + padding: 0.5em; + background: #eee; + height: auto; + box-shadow: 0 0 0; + @include placeholder(#777, 1, 100%, normal); + &:focus { + background: #fafafa; + @include placeholder(#456, 1, 100%, normal); + } + } + .textinput{ + @include placeholder(#777, 1, 90%, normal); + &:focus { + background: #fafafa; + @include placeholder(#456, 1, 90%, normal); } + } + .textinput[name='titulo']{ + @extend .input; + font-size:130%; + font-weight: bold; + border-bottom: 0; + @include placeholder(#777, 1, 100%, bold); + &:focus { + background: #fafafa; + @include placeholder(#777, 1, 100%, bold); + } + } - .dne-nota { - position: relative; - transform: scaleX(1); - height: auto; - border-top: 0px; + .textarea { + @extend .input; + resize: vertical; + font-weight: normal; + } - ul.btns-action { - display: none; - } + .urlinput { + @extend .input; + margin-bottom: 1em; + } - .dne-form { - margin: 1em -2em 0em; - text-align: left; - font-size: 1.6rem; - - .container-busca { - ul{ - list-style: none; - display: table; - margin-left: 0; - border-collapse:separate; - border-spacing:1px; - padding: 0px; - - li { - display: table-row; - - &:nth-child(even) { - background-color: rgba(0, 0, 0, 0.05); - - } - &:nth-child(odd) { - background-color: rgba(0, 0, 0, 0.08); - - } - - .iteminput { - display: table-cell; - padding: 0.5em; - vertical-align: middle; - text-align: center; - - input { - margin: 0; - } - } - - .itemlabel { - display: table-cell; - padding: 0.5em; - vertical-align: middle; - width: 100%; - label { - line-height: 1; - font-family: "SourceSansPro", Helvetica, Arial, sans-serif; - } - } - } - } - .ta_title { - padding: 0.15em 0.7em; - background-color: rgba(0, 0, 0, 0.15); - margin: 0.1em 0.08em 0 0.1em; - } - .nomenclatura_heranca { - font-size: 90%; - color: #057dba; - } - } + .button { + width: 100%; + margin-top: 1.6em; + padding: 0; + height: 2.835em; + } + .btn-busca { + margin-top: 1.25em; + } + .container-busca { + ul{ + list-style: none; + display: table; + margin-left: 0; + border-collapse:separate; + border-spacing:1px; + + li { + display: table-row; + + &:nth-child(even) { + background-color: rgba(0, 0, 0, 0.05); } - } + &:nth-child(odd) { + background-color: rgba(0, 0, 0, 0.08); - &:hover { - .dne { - height: 0.1667rem; - transform: scaleX(1); - transition-delay: 1s; - } - .dne-nota { - height: auto; - transition-delay: 0s; } - } - .dne-nota111 { - box-shadow: -4px 15px 15px rgba(0, 0, 0, 0.1), 0px 6px 6px rgba(0, 0, 0, 0.23); - @include background-top-down(#f5f5f5, #eee); - position: relative; - transform: scaleX(1); - height: auto; - left: 0; - right: 0; - margin: 1em 0 2em 0; - padding: 0em; - border: 0px; - z-index: 19; - ul.btns-action { - display: none; - } + .iteminput { + display: table-cell; + padding: 0.5em; + vertical-align: middle; + text-align: center; - .dne-form111 { - .asterisk { - color: transparent; - &::before { - color: red; - content: "\2b25"; - padding: 0 0.333em; - vertical-align: super; - } - } - .title_form { - font-size: 2.5em; - padding: 0.5em 0.3em 0.3em; - background: #e5e5e5; - color: #777; - margin-bottom: 0.4em; - border-bottom: 1px solid #aaa; - } - fieldset { - border: 0px; - } - select { - background: url(/static/img/down_arrow_select.jpg) no-repeat right #ddd; - border: 0px; - outline:0px; - } - .alert-box { - margin-bottom: 0; - } - .row:first-of-type { - margin-top: 1em; - display: inline-block; - } - .columns { - padding: 0 0.5rem; - } - .input { - border: 0px; - border-bottom: 1px solid #ccc; - margin: 0 0 0 0 ; - padding: 0.5em; - background: #eee; - height: auto; - box-shadow: 0 0 0; - @include placeholder(#777, 1, 100%, normal); - &:focus { - background: #fafafa; - @include placeholder(#456, 1, 100%, normal); - } - } - .textinput{ - @include placeholder(#777, 1, 90%, normal); - &:focus { - background: #fafafa; - @include placeholder(#456, 1, 90%, normal); - } - } - .textinput[name='titulo']{ - @extend .input; - font-size:130%; - font-weight: bold; - border-bottom: 0; - @include placeholder(#777, 1, 100%, bold); - &:focus { - background: #fafafa; - @include placeholder(#777, 1, 100%, bold); - } - } - - .textarea { - @extend .input; - resize: vertical; - font-weight: normal; - } - - .urlinput { - @extend .input; - margin-bottom: 1em; - } - - .button { - width: 100%; - margin-top: 1.6em; - padding: 0; - height: 2.835em; - } - .btn-busca { - margin-top: 1.25em; - } - .container-busca { - ul{ - list-style: none; - display: table; - margin-left: 0; - border-collapse:separate; - border-spacing:1px; - - li { - display: table-row; - - &:nth-child(even) { - background-color: rgba(0, 0, 0, 0.05); - - } - &:nth-child(odd) { - background-color: rgba(0, 0, 0, 0.08); - - } - - .iteminput { - display: table-cell; - padding: 0.5em; - vertical-align: middle; - text-align: center; - - input { - margin: 0; - } - } - - .itemlabel { - display: table-cell; - - padding: 0.5em; - vertical-align: middle; - width: 100%; - } - } - } - .ta_title { - padding: 0.15em 0.7em; - background-color: rgba(0, 0, 0, 0.15); - margin: 0.1em 0.08em 0 0.1em; - } - .nomenclatura_heranca { - font-size: 90%; - color: #057dba; - } - } + input { + margin: 0; + } } - } - } - } /* and dpt */ - .tipo-vigencias { - list-style: none; - position: fixed; - bottom: 0px; - left: 50%; - transform: translate(-50%, 0); - margin: 0; - padding: 0; - background-color: $color_buttons; - z-index: 1000; - opacity: 0.9; - transition: all 0.3s ease-in-out; + .itemlabel { + display: table-cell; - li { - display: inline-block; - border-left: 1px solid #fff; - float: left; - a { - color: white; - padding: 0.3em 1em 0; - display: inline-block; - font-size: 110%; - cursor: pointer; - &.selected { - background-color: rgba(0, 0, 0, 0.5); + padding: 0.5em; + vertical-align: middle; + width: 100%; } + } } - &:hover { - background-color: rgba(0, 0, 0, 0.2); + .ta_title { + padding: 0.15em 0.7em; + background-color: rgba(0, 0, 0, 0.15); + margin: 0.1em 0.08em 0 0.1em; + } + .nomenclatura_heranca { + font-size: 90%; + color: #057dba; } + } } - &:hover { - opacity: 1; + } + } + } /* and dpt */ + .tipo-vigencias { + list-style: none; + position: fixed; + bottom: 0px; + left: 50%; + transform: translate(-50%, 0); + margin: 0; + padding: 0; + background-color: $color_buttons; + z-index: 1000; + + opacity: 0.9; + transition: all 0.3s ease-in-out; + + li { + display: inline-block; + border-left: 1px solid #fff; + float: left; + a { + color: white; + padding: 0.3em 1em 0; + display: inline-block; + font-size: 110%; + cursor: pointer; + &.selected { + background-color: rgba(0, 0, 0, 0.5); } + } + &:hover { + background-color: rgba(0, 0, 0, 0.2); + } + } + &:hover { + opacity: 1; } + } } /* end cp */ .cp.cpe { - margin-bottom: 15em; - margin-left: 0.8em; + margin-bottom: 15em; + margin-left: 0.8em; - a { - text-decoration: none; - cursor: pointer; - } + a { + text-decoration: none; + cursor: pointer; + } - .dpt { - position: relative; - display:block; + .dpt { + position: relative; + display:block; - .semtexto { - font-weight: bold; - color: #BFD1F6; - } + .semtexto { + font-weight: bold; + color: #BFD1F6; + } - .artigo { - float: none; - } - & > .actions_left { - color: #fff; - position: absolute; - left: -2.6em; - opacity: 0; - transition: all 0.4s ease-in-out; - a { - &.btn-edit { - @include background-top-down(#3498DB, #2980C9); - @include border-radius(7px); - color: #ffffff !important; - font-weight: bold; - padding: 2px 7px 2px 7px; - - &:hover { - @include background-top-down(#3cb0fd, #3498DB); - } - } - } + .artigo { + float: none; + } + & > .actions_left { + color: #fff; + position: absolute; + left: -2.6em; + opacity: 0; + transition: all 0.4s ease-in-out; + a { + &.btn-edit { + @include background-top-down(#3498DB, #2980C9); + @include border-radius(7px); + color: #ffffff !important; + font-weight: bold; + padding: 2px 7px 2px 7px; + + &:hover { + @include background-top-down(#3cb0fd, #3498DB); + } } + } + } - &:hover > .actions_left { - opacity: 0.5; - background-color: transparent !important; - &::before { - content: ""; - border: inset 0.375rem; - border-color: transparent transparent transparent #3cb0fd; - position: absolute; - display: block; - height: 0; - width: 0; - top: 0.4rem; - right: -0.73rem; - } - &:hover { - opacity: 1; - &::before { - border-color: transparent transparent transparent #3cf0ff; - } - } + &:hover > .actions_left { + opacity: 0.5; + background-color: transparent !important; + &::before { + content: ""; + border: inset 0.375rem; + border-color: transparent transparent transparent #3cb0fd; + position: absolute; + display: block; + height: 0; + width: 0; + top: 0.4rem; + right: -0.73rem; + } + &:hover { + opacity: 1; + &::before { + border-color: transparent transparent transparent #3cf0ff; } + } + } - .bloco { - display: block; - clear: both; - *:hover { - color: #27AE60; - } - .de { - cursor: pointer; - } - } - .articulacao{ - margin-left: -0.8em; - margin-top: 2em; - &::before { - content: "Articulação"; - background-color: #eee; - border-bottom: 1px solid #aaa; - padding: 0.333em; - padding-left: 1em; - display:block; - } - } - .bloco_alteracao { - @extend .articulacao; - margin: 0; - padding-top: 3em; - padding-left: 0em; - background: #ddd; - &::before { - content: "Bloco de Alteração"; + .bloco { + display: block; + clear: both; + *:hover { + color: #27AE60; + } + .de { + cursor: pointer; + } + } + .articulacao{ + margin-left: -0.8em; + margin-top: 2em; + &::before { + content: "Articulação"; + background-color: #eee; + border-bottom: 1px solid #aaa; + padding: 0.333em; + padding-left: 1em; + display:block; + } + } + .bloco_alteracao { + @extend .articulacao; + margin: 0; + padding-top: 3em; + padding-left: 0em; + background: #ddd; + &::before { + content: "Bloco de Alteração"; + + display: block; + } + } - display: block; - } - } + } /* fim dpt */ - } /* fim dpt */ + .dpt-selected { + font-size: 1em; + border: 0px solid $color_actions_border; + margin: 1em -2em 1em -2.8em; + padding: 2.2em 2.2em 1.6em 2.2em; + box-shadow: -4px 15px 15px rgba(0, 0, 0, 0.1), 0px 6px 6px rgba(0, 0, 0, 0.23); - .dpt-selected { - font-size: 1em; - border: 0px solid $color_actions_border; - margin: 1em -2em 1em -2.8em; - padding: 2.2em 2.2em 1.6em 2.2em; - box-shadow: -4px 15px 15px rgba(0, 0, 0, 0.1), 0px 6px 6px rgba(0, 0, 0, 0.23); + @include background-top-down(#eaeaee, #ddd); - @include background-top-down(#eaeaee, #ddd); + ul { + list-style: none; + margin: 0; + padding: 0; + } - ul { - list-style: none; - margin: 0; - padding: 0; - } + .semtexto { + color: #999; + } - .semtexto { - color: #999; - } + .bloco { + opacity: 0.5; + &:hover { + opacity: 1; + } + a:hover { + background: transparent; + } - .bloco { - opacity: 0.5; - &:hover { - opacity: 1; - } - a:hover { - background: transparent; - } + } - } + & > .bloco { + padding: 1em 0; + opacity: 1; + margin: 0 !important; + } + + & > .dpt { + padding: 0; + &:last-child { + padding-bottom: 1em; + } + } + + & > .actions_left { + display: none; + } + + .csform { /* compilacao simple form */ + display: block; + clear: both; + z-index: 9; + position: static; - & > .bloco { - padding: 1em 0; - opacity: 1; - margin: 0 !important; + .btns-action { + -webkit-animation: fadeIn 1s ease-in-out; + -moz-animation: fadeIn 1s ease-in-out; + -o-animation: fadeIn 1s ease-in-out; + opacity: 1; + + position: absolute; + display: table; + transition: all 0.4s ease-in-out; + + a { + color: $color_actions; + display: block; + background: transparent; + vertical-align: middle; + text-align: center; + font-weight: normal; + text-shadow: 0 0 10px rgba(0,0,0,0.3); + padding: 0.33em 0.4em; } - & > .dpt { - padding: 0; - &:last-child { - padding-bottom: 1em; + & > li { + position: relative; + display: table-cell; + vertical-align: top; + &:hover { + background-color: rgba(255, 255, 255, 0.5); + & > a { + text-shadow: 0 0 5px #777; + color: #0a5; } + } + } + } + + .label_status { + position: absolute; + bottom: 0; + right: 0; + color: #889; + padding: 0.3em; + font-size: 80%; + text-align: right; + z-index: 15; + display: table; + li { + display: table-cell; } + } - & > .actions_left { - display: none; + .actions_parents { + z-index: 11; + top: 0em; + left: 0em; + a { + padding: 0.62em; + } + div, li { + font-size: 80%; + display: table-cell; + vertical-align: middle; + border-right: 1px solid $color_actions_border; + } + div { + padding: 0 0.4em; + font-stretch: condensed; + font-variant: small-caps; + font-weight: bold; + text-shadow: 0 0 10px #fff; + } + & > li { + &:hover a{ + color: $color_actions; + font-weight: normal; + } + } + } + + .actions_top { + top: 0em; + right: 0em; + a { + padding-right: 1em; + padding-left: 1em; + } + li { + display: table-cell; + vertical-align: middle; + border-left: 1px solid $color_actions_border; + } + } + + .actions_bottom { + @extend .actions_top; + top: auto; + left: 0; + bottom: 0; + display: inline-block; + border-top: 1px solid $color_actions_border; + a { + padding: 0 0.4em; + } + li { + border: 0px; + border-right: 1px solid $color_actions_border; } + } - .csform { /* compilacao simple form */ + .actions_right { + top: 2.2em; + right: 0em; + bottom:0; + display: block; + li { + width: 2.2em; + display: block; + border-bottom: 1px solid $color_actions_border; + &:first-child { + border-top: 1px solid $color_actions_border; + } + } + } + + .actions_left { + @extend .actions_right; + right: auto; + left: 0em; + } + + + + + + + .actions_inserts { + background: transparent; + position: relative; + z-index: 19; + display: table; + width: 100%; + + & > li { + display: table-cell; + + &:hover > a { + @include background-top-down(#1c81c4, #0b6dad); + } + & > a { + @include background-top-down(#3498DB, #2980C9); + border-right: 1px solid #fff; + padding: 0.2em; display: block; - clear: both; - z-index: 9; - position: static; + color: white; + text-align: center; + white-space: nowrap; - .btns-action { - -webkit-animation: fadeIn 1s ease-in-out; - -moz-animation: fadeIn 1s ease-in-out; - -o-animation: fadeIn 1s ease-in-out; - opacity: 1; - position: absolute; - display: table; - transition: all 0.4s ease-in-out; + &.btn-excluir { - a { - color: $color_actions; - display: block; - background: transparent; - vertical-align: middle; - text-align: center; - font-weight: normal; - text-shadow: 0 0 10px rgba(0,0,0,0.3); - padding: 0.33em 0.4em; - } + text-align: left; + background: #A70808; + color: #c99; + padding-left: 1.7em; + position: relative; - & > li { - position: relative; - display: table-cell; - vertical-align: top; - &:hover { - background-color: rgba(255, 255, 255, 0.5); - & > a { - text-shadow: 0 0 5px #777; - color: #0a5; - } - } - } - } + &:hover { + background-color: #c70808; + color: #ecc; + } - .label_status { + &::before { + z-index: 20; position: absolute; - bottom: 0; - right: 0; - color: #889; - padding: 0.3em; + background: url(/static/img/icon_delete_white.png) no-repeat 50% 50%; + content:""; + top: 0; + left: 0; + display: block; + color: black; + margin-left: 0.4em; + height: 100%; + width: 2em; + } + + } /* btn-excluir */ + + &.btn-salvar { + @extend .btn-excluir; + background: #1f8b4d; + color: white; + &:hover { + background: #2d9c5c; + color: white; + } + &::before { + background: url(/static/img/icon_save_white.png) no-repeat 50% 50%; + } + } + span { + padding: 0 0.7em; + } + } + + &:last-child > a{ + border-right: 0px solid #fff; + } + + & > ul { + li { + &:nth-child(even) a { + background: #3385CA; + } + a { + border-right: 1px solid #fff; + display: block; + color: white; + background: #2980C9; font-size: 80%; - text-align: right; - z-index: 15; - display: table; - li { - display: table-cell; + padding: 0.23em 1em; + &:hover { + background: #0a5ea4; } - } + } - .actions_parents { - z-index: 11; - top: 0em; - left: 0em; - a { - padding: 0.62em; - } - div, li { - font-size: 80%; - display: table-cell; - vertical-align: middle; - border-right: 1px solid $color_actions_border; - } - div { - padding: 0 0.4em; - font-stretch: condensed; - font-variant: small-caps; - font-weight: bold; - text-shadow: 0 0 10px #fff; - } - & > li { - &:hover a{ - color: $color_actions; - font-weight: normal; - } - } } + } + &.add_prior { + @include li_flutuante(); + table-layout: fixed; + } + &.menu_excluir { + @include li_flutuante(); + display: block; + position: static; - .actions_top { - top: 0em; - right: 0em; - a { - padding-right: 1em; - padding-left: 1em; - } - li { - display: table-cell; - vertical-align: middle; - border-left: 1px solid $color_actions_border; - } - } - .actions_bottom { - @extend .actions_top; - top: auto; - left: 0; - bottom: 0; - display: inline-block; - border-top: 1px solid $color_actions_border; + & > ul { + right: 0.5em; + li { a { - padding: 0 0.4em; - } - li { - border: 0px; - border-right: 1px solid $color_actions_border; + background-color: #A70808; + &:hover { + background: #c70808; + } } - } - - .actions_right { - top: 2.2em; - right: 0em; - bottom:0; - display: block; - li { - width: 2.2em; - display: block; - border-bottom: 1px solid $color_actions_border; - &:first-child { - border-top: 1px solid $color_actions_border; - } + &:first-child { + &::before { + border-color: transparent transparent #A70808; + right: 10%; + left: auto; + } + &:hover::before { + border-color: transparent transparent #c70808; + } } + } } - .actions_left { - @extend .actions_right; - right: auto; - left: 0em; - } - - - + } + } + } /* actions_inserts */ - .actions_inserts { - background: transparent; - position: relative; - z-index: 19; - display: table; - width: 100%; - - & > li { - display: table-cell; - - &:hover > a { - @include background-top-down(#1c81c4, #0b6dad); - } - & > a { - @include background-top-down(#3498DB, #2980C9); - border-right: 1px solid #fff; - padding: 0.2em; - display: block; - color: white; - text-align: center; - white-space: nowrap; - - - &.btn-excluir { - - text-align: left; - background: #A70808; - color: #c99; - padding-left: 1.7em; - position: relative; - - &:hover { - background-color: #c70808; - color: #ecc; - } - - &::before { - z-index: 20; - position: absolute; - background: url(/static/img/icon_delete_white.png) no-repeat 50% 50%; - content:""; - top: 0; - left: 0; - display: block; - color: black; - margin-left: 0.4em; - height: 100%; - width: 2em; - } - - } /* btn-excluir */ - - &.btn-salvar { - @extend .btn-excluir; - background: #1f8b4d; - color: white; - &:hover { - background: #2d9c5c; - color: white; - } - &::before { - background: url(/static/img/icon_save_white.png) no-repeat 50% 50%; - } - } - span { - padding: 0 0.7em; - } - } - - &:last-child > a{ - border-right: 0px solid #fff; - } - - & > ul { - li { - &:nth-child(even) a { - background: #3385CA; - } - a { - border-right: 1px solid #fff; - display: block; - color: white; - background: #2980C9; - font-size: 80%; - padding: 0.23em 1em; - &:hover { - background: #0a5ea4; - } - } - - } - } - &.add_prior { - @include li_flutuante(); - table-layout: fixed; - } - &.menu_excluir { - @include li_flutuante(); - display: block; - position: static; - - - & > ul { - right: 0.5em; - li { - a { - background-color: #A70808; - &:hover { - background: #c70808; - } - } - &:first-child { - &::before { - border-color: transparent transparent #A70808; - right: 10%; - left: auto; - } - &:hover::before { - border-color: transparent transparent #c70808; - } - } - } - } - - } + .menu_flutuante { + & > li { + @include li_flutuante(); - } - } /* actions_inserts */ - - - .menu_flutuante { - & > li { - @include li_flutuante(); - - - &.menu_excluir { - & > ul { - li { - &:first-child { - &::before { - right: auto; - left: 0.9375rem; - } - } - } - } - } - } - } - textarea { - margin: 0; - resize: vertical; - min-height: 12.6em; - border: 0px; - font-size: 120%; - width: 100%; - &:focus { - background: #fff; - } - &::-webkit-input-placeholder { - color: #c70808; - opacity: 0.6; - font-size: 80%; - } - &:-moz-placeholder { /* Firefox 18- */ - color: #c70808; - } - &::-moz-placeholder { /* Firefox 19+ */ - color: #c70808; - } - &:-ms-input-placeholder { - color: #c70808; - opacity: 0.6; + &.menu_excluir { + & > ul { + li { + &:first-child { + &::before { + right: auto; + left: 0.9375rem; + } } + } } - } /* fim csform*/ - } + } + } + } - .selected { - background-color: rgba(255, 255, 255, 0.5); - a { - &:hover { - color: $color_actions !important; - font-weight: normal !important; - } + textarea { + margin: 0; + resize: vertical; + min-height: 12.6em; + border: 0px; + font-size: 120%; + width: 100%; + &:focus { + background: #fff; } + &::-webkit-input-placeholder { + color: #c70808; + opacity: 0.6; + font-size: 80%; + } + &:-moz-placeholder { /* Firefox 18- */ + color: #c70808; + } + &::-moz-placeholder { /* Firefox 19+ */ + color: #c70808; + } + &:-ms-input-placeholder { + color: #c70808; + opacity: 0.6; + } + } + } /* fim csform*/ + } + + .selected { + background-color: rgba(255, 255, 255, 0.5); + a { + &:hover { + color: $color_actions !important; + font-weight: normal !important; + } } + } } .class_color_container { - background: #ddd !important; + background: #ddd !important; } .clear { - clear:both; + clear:both; } .mce-panel { - border: 0px solid #ccc !important; + border: 0px solid #ccc !important; } .mce-btn button:hover { - background-color: rgba(0,0,0,0.1) !important; - text-shadow: 0 0 5px #fff; - box-shadow: 0 0 5px #777; + background-color: rgba(0,0,0,0.1) !important; + text-shadow: 0 0 5px #fff; + box-shadow: 0 0 5px #777; } .mce-menu { - background: #eee !important; + background: #eee !important; } .displaynone { - display: none !important; + display: none !important; } @media only screen and (max-width: 40.0625em) { - .cp .fixed{ - z-index:98; - position: relative; - } + .cp .fixed{ + z-index:98; + position: relative; + } - .cpe { - .dpt-selected { - margin:1em -1em 1em -1.8em; - - .csform { - .actions_parents, .label_status { - font-size: 80%; - position:static !important; - display: block !important; - padding: 0em; - height: auto !important; - div, li { - display: inline-block !important; - } - } + .cpe { + .dpt-selected { + margin:1em -1em 1em -1.8em; + + .csform { + .actions_parents, .label_status { + font-size: 80%; + position:static !important; + display: block !important; + padding: 0em; + height: auto !important; + div, li { + display: inline-block !important; + } + } + + .actions_inserts { + & > li { + @include li_flutuante(); - .actions_inserts { - & > li { - @include li_flutuante(); - - & > a { - span { - display: none; - } - &.btn-excluir, &.btn-salvar { - padding-left: 0; - min-width: 1em; - &::before { - width: 100%; - margin: 0; - } - } - } - &.add_in, &.add_next, &.add_prior { - position: static; - } - &.add_in > ul { - left: 1em !important; - right: 1em !important; - margin-left: 0; - li:first-child::before { - left: 37%; - } - } - &.add_next > ul { - left: 0 !important; - right: 1em !important; - } - &.add_prior > ul { - left: 1em !important; - right: 0 !important; - margin-left: 0; - margin-right: 0.5em; - li:first-child::before { - right: 42%; - left: auto; - } - } - &.menu_excluir > ul { - left: 10% !important; - right: 0 !important; - margin-left: 0; - margin-right: 0.5em; - li:first-child::before { - right: 27%; - left: auto; - } - } - } + & > a { + span { + display: none; + } + &.btn-excluir, &.btn-salvar { + padding-left: 0; + min-width: 1em; + &::before { + width: 100%; + margin: 0; } + } + } + &.add_in, &.add_next, &.add_prior { + position: static; } + &.add_in > ul { + left: 1em !important; + right: 1em !important; + margin-left: 0; + li:first-child::before { + left: 37%; + } + } + &.add_next > ul { + left: 0 !important; + right: 1em !important; + } + &.add_prior > ul { + left: 1em !important; + right: 0 !important; + margin-left: 0; + margin-right: 0.5em; + li:first-child::before { + right: 42%; + left: auto; + } + } + &.menu_excluir > ul { + left: 10% !important; + right: 0 !important; + margin-left: 0; + margin-right: 0.5em; + li:first-child::before { + right: 27%; + left: auto; + } + } + } } + } } + } } @media print { - .cp .vigencias, .toggle-topbar, .menu-icon, .button { - display:none; - } + .cp .vigencias, .toggle-topbar, .menu-icon, .button { + display:none; + } } diff --git a/templates/base.html b/templates/base.html index 36df2ab06..8fdcaa365 100644 --- a/templates/base.html +++ b/templates/base.html @@ -154,9 +154,13 @@ {% endblock %} {% block title %} - {% if view.title %} -

{{ view.title|safe|linebreaksbr }}

- {% endif %} +

+ {% if view.title %} + {{ view.title|safe|linebreaksbr }} + {% else %} + {{ title|safe|linebreaksbr }} + {% endif %} +

{% endblock %} @@ -219,14 +223,10 @@ - - - + - {# Scripts #} - {# modernizr must be in head (see http://modernizr.com/docs/#installing) #} diff --git a/templates/compilacao/confirm_delete.html b/templates/compilacao/confirm_delete.html deleted file mode 100644 index 354db7f00..000000000 --- a/templates/compilacao/confirm_delete.html +++ /dev/null @@ -1,20 +0,0 @@ -{% extends "base.html" %} -{% load i18n %} - -{% block base_content %} -
{% csrf_token %} -
- -

- {% blocktrans %} - Confirma exclusão de
"{{ object }}"? - {% endblocktrans %} -

- - -
-
-{% endblock %} diff --git a/templates/compilacao/dispositivo_search_fragment_form.html b/templates/compilacao/dispositivo_search_fragment_form.html index be999ad8d..385096057 100644 --- a/templates/compilacao/dispositivo_search_fragment_form.html +++ b/templates/compilacao/dispositivo_search_fragment_form.html @@ -2,39 +2,38 @@ {% load compilacao_filters %} {% if object_list.count >= 100 %} -
- {% trans 'Use argumentos para simplificar listagem...' %} -
+
+ {% trans 'Use argumentos para simplificar listagem...' %} +
{% endif %} {% for dpt in object_list %} - {% ifchanged dpt.ta%} - {% if not forloop.first %}{% endif %} -
{{dpt.ta}}
-
    - {% endifchanged %} + {% ifchanged dpt.ta%} + {% if not forloop.first %}
{% endif %} +
{{dpt.ta}}
+
    + {% endifchanged %} - {% if dpt.is_relative_auto_insert and dpt.dispositivo_pai.nivel != 0 %} -
  • -
    - -
    -
    - - {% nomenclatura_heranca dpt 1 1 %} -
    -
  • - {% elif not dpt.tipo_dispositivo.dispositivo_de_articulacao %} -
  • -
    - -
    -
    - - {% nomenclatura_heranca dpt 1 1 %} -
    -
  • - {% endif%} - - {% if forloop.last %}
{% endif %} + {% if dpt.is_relative_auto_insert and dpt.dispositivo_pai.nivel != 0 %} +
  • +
    + +
    +
    + + {% nomenclatura_heranca dpt 1 1 %} +
    +
  • + {% elif not dpt.tipo_dispositivo.dispositivo_de_articulacao %} +
  • +
    + +
    +
    + + {% nomenclatura_heranca dpt 1 1 %} +
    +
  • + {% endif%} + {% if forloop.last %}{% endif %} {% endfor %} diff --git a/templates/compilacao/publicacao_detail.html b/templates/compilacao/publicacao_detail.html index 4f3cccc22..8f026d35b 100644 --- a/templates/compilacao/publicacao_detail.html +++ b/templates/compilacao/publicacao_detail.html @@ -1,97 +1,91 @@ -{% extends "base.html" %} {% load i18n %} {% load compilacao_filters %} +{% extends "base.html" %} +{% load i18n %} +{% load compilacao_filters %} {% load common_tags %} - - {% block base_content %} - -
    {% block actions %} {% endblock actions %}
    +
    + {% block sections_nav %} + {% endblock %} +
    -
    - {% block sections_nav %} - {% endblock %} -
    - - {% block detail_content %} {# TODO replace fieldset for something semantically correct, but with similar visual grouping style #} + {% block detail_content %} {# TODO replace fieldset for something semantically correct, but with similar visual grouping style #}
    - {%trans 'Identificação Básica'%} - -
    -
    -
    - -

    {{ object.tipo_publicacao}}

    -
    -
    -
    -
    - -

    {{ object.veiculo_publicacao}}

    -
    -
    -
    -
    - -

    {{ object.ano}}

    -
    -
    + {%trans 'Identificação Básica'%} +
    +
    +
    + +

    {{ object.tipo_publicacao}}

    +
    -
    -
    -
    - -

    {{ object.data}}

    -
    -
    -
    -
    - -

    {{ object.hora|time:"H:i:s"}}

    -
    -
    -
    -
    - -

    {{ object.numero|default:''}}

    -
    -
    -
    -
    - -

    {{ object.edicao|default:''}}

    -
    -
    +
    +
    + +

    {{ object.veiculo_publicacao}}

    +
    -
    -
    -
    - -

    {{ object.pagina_inicio|default:''}}

    -
    -
    -
    -
    - -

    {{ object.pagina_fim|default:''}}

    -
    -
    -
    -
    - -

    {{ object.url_externa|default:''}}

    -
    -
    - +
    +
    + +

    {{ object.ano}}

    +
    +
    +
    +
    +
    +
    + +

    {{ object.data}}

    +
    +
    +
    +
    + +

    {{ object.hora|time:"H:i:s"}}

    +
    +
    +
    +
    + +

    {{ object.numero|default:''}}

    +
    +
    +
    +
    + +

    {{ object.edicao|default:''}}

    +
    +
    +
    +
    +
    + +

    {{ object.pagina_inicio|default:''}}

    +
    +
    +
    +
    + +

    {{ object.pagina_fim|default:''}}

    +
    +
    +
    +
    + +

    {{ object.url_externa|default:''}}

    +
    +
    +
    - {% endblock detail_content %} - + {% endblock detail_content %} {% endblock base_content %} diff --git a/templates/compilacao/publicacao_list.html b/templates/compilacao/publicacao_list.html index 3e1dd22ff..fb80695b6 100644 --- a/templates/compilacao/publicacao_list.html +++ b/templates/compilacao/publicacao_list.html @@ -5,44 +5,44 @@ {% block base_content %} - + -{% if not object_list %} -

    {{ NO_ENTRIES_MSG }}

    -{% else %} - - + {% if not object_list %} +

    {{ NO_ENTRIES_MSG }}

    + {% else %} +
    + - - - - - - - + + + + + + + - - + + {% for pub in object_list %} - - + + - + {% endfor %} - -
    {% fieldclass_verbose_name 'compilacao.models.Publicacao' 'data' %}{% fieldclass_verbose_name 'compilacao.models.Publicacao' 'hora' %}{% fieldclass_verbose_name 'compilacao.models.Publicacao' 'numero' %}{% fieldclass_verbose_name 'compilacao.models.Publicacao' 'ano' %}{% fieldclass_verbose_name 'compilacao.models.Publicacao' 'edicao' %}{% fieldclass_verbose_name 'compilacao.models.Publicacao' 'veiculo_publicacao' %}{% fieldclass_verbose_name 'compilacao.models.Publicacao' 'tipo_publicacao' %}{% fieldclass_verbose_name 'compilacao.models.Publicacao' 'data' %}{% fieldclass_verbose_name 'compilacao.models.Publicacao' 'hora' %}{% fieldclass_verbose_name 'compilacao.models.Publicacao' 'numero' %}{% fieldclass_verbose_name 'compilacao.models.Publicacao' 'ano' %}{% fieldclass_verbose_name 'compilacao.models.Publicacao' 'edicao' %}{% fieldclass_verbose_name 'compilacao.models.Publicacao' 'veiculo_publicacao' %}{% fieldclass_verbose_name 'compilacao.models.Publicacao' 'tipo_publicacao' %}
    {{ pub.data }}
    {{ pub.data }} {{ pub.hora|time:'H:i:s' }} {{ pub.numero|default:'' }} {{ pub.ano|default:'' }} {{ pub.edicao|default:'' }} {{ pub.veiculo_publicacao }} {{ pub.tipo_publicacao}}
    -{%endif%} -{% include 'paginacao.html'%} + + + {%endif%} + {% include 'paginacao.html'%} {% endblock %} diff --git a/templates/compilacao/text_edit.html b/templates/compilacao/text_edit.html index 1a4ffabb5..41df0d905 100644 --- a/templates/compilacao/text_edit.html +++ b/templates/compilacao/text_edit.html @@ -7,7 +7,7 @@ {% load common_tags %} {% block head_content %}{{block.super}} - + {% endblock %} {% block title%} @@ -15,29 +15,27 @@ {% endblock %}
    {% trans 'Aguarde... Atualizando informações!!!'%}
    +{% block actions %} +
    + +
    +{% endblock actions %} {% block base_content %}{{block.super}} -
    - {% include 'compilacao/text_edit_bloco.html'%} -
    +
    + {% include 'compilacao/text_edit_bloco.html'%} +
    {% endblock base_content %} -{% block actions %} -
    - -
    -{% endblock actions %} {% block foot_js %} - {{block.super}} - - + {{block.super}} + + {% endblock %} diff --git a/templates/compilacao/text_edit_bloco.html b/templates/compilacao/text_edit_bloco.html index 9ac0e6c70..92facce03 100644 --- a/templates/compilacao/text_edit_bloco.html +++ b/templates/compilacao/text_edit_bloco.html @@ -3,132 +3,128 @@ {% load common_tags %} {% for dpt in object_list %} - {% if dpt.nivel == view.flag_nivel_old %} - - {% elif dpt.nivel < view.flag_nivel_old %} - {% close_div view.flag_nivel_old dpt.nivel 0 %} - {% endif%} - - {% if forloop.first and view|isinst:'DispositivoEditView' %} - {% else %} -
    - {% endif%} - - {% if view|render_actions_head:dpt %} -
    -
    -
      - {% if not dpt.tipo_dispositivo.dispositivo_de_articulacao %} -
    • E
    • -
    • E+
    • - {%endif%} -
    • E*
    • -
    • C
    • -
    - - -
      -
    • T
    • -
    -
      - {% for perfil in perfil_estrutural_list%} -
    • {{perfil.sigla}}
    • - {% endfor %} -
    - - - -
    - {% csrf_token %} - - - {% if not dpt.tipo_dispositivo.dispositivo_de_articulacao %} - - {%endif%} - -
    - -
      -
    • Ordem: {{dpt.ordem}}, Nivel: {{dpt.nivel}}, Número: {{dpt.get_numero_completo}}
    • -
    • .
    • -
    - - -
    + {% if dpt.nivel == view.flag_nivel_old %} +
    + {% elif dpt.nivel < view.flag_nivel_old %} + {% close_div view.flag_nivel_old dpt.nivel 0 %} + {% endif%} + + {% if forloop.first and view|isinst:'DispositivoEditView' %} + {% else %} +
    + {% endif%} + + {% if view|render_actions_head:dpt %} +
    +
    +
      + {% if not dpt.tipo_dispositivo.dispositivo_de_articulacao %} +
    • E
    • +
    • E+
    • + {%endif%} +
    • E*
    • +
    • C
    • +
    + + +
      +
    • T
    • +
    +
      + {% for perfil in perfil_estrutural_list%} +
    • {{perfil.sigla}}
    • + {% endfor %} +
    + + + +
    + {% csrf_token %} + + {% if not dpt.tipo_dispositivo.dispositivo_de_articulacao %} + + {%endif%} +
    + +
      +
    • Ordem: {{dpt.ordem}}, Nivel: {{dpt.nivel}}, Número: {{dpt.get_numero_completo}}
    • +
    • .
    • +
    + + +
    - {% endif%} - - {% if view.pk_view == 0 and view.pk_edit == 0 or view.pk_edit != view.pk_view %} - - {% if not dpt.rotulo and not dpt.texto %} -
    - E -
    - {% endif %} -
    - {% spaceless %} -
    {{ dpt.tipo_dispositivo.rotulo_prefixo_html|safe }}{{ dpt.rotulo }}{{ dpt.tipo_dispositivo.rotulo_sufixo_html|safe }}{{ dpt.tipo_dispositivo.texto_prefixo_html|safe }}{% if dpt.texto == '' and not dpt.tipo_dispositivo.dispositivo_de_articulacao %}({{dpt.tipo_dispositivo}} sem texto){%else%}{{ dpt.texto|safe }}{%endif%}
    - {% if dpt.ta_publicado_id != None and not dpt.tipo_dispositivo.dispositivo_de_articulacao %} - - {{ dpt.tipo_dispositivo.nota_automatica_prefixo_html|safe }} - {% nota_automatica dpt ta_pub_list %} - {{ dpt.tipo_dispositivo.nota_automatica_sufixo_html|safe }} - - {% endif %} - {% endspaceless %} - {% if view.is_ta_alterador and dpt.tipo_dispositivo.class_css == 'bloco_alteracao'%} - {%with node=dpt template_name='compilacao/text_edit_blocoalteracao.html' %} - {%include template_name%} - {%endwith%} - {% endif%} -
    - {% endif%} + {% endif%} + + {% if view.pk_view == 0 and view.pk_edit == 0 or view.pk_edit != view.pk_view %} + {% if not dpt.rotulo and not dpt.texto %} +
    + E +
    + {% endif %} +
    + {% spaceless %} +
    {{ dpt.tipo_dispositivo.rotulo_prefixo_html|safe }}{{ dpt.rotulo }}{{ dpt.tipo_dispositivo.rotulo_sufixo_html|safe }}{{ dpt.tipo_dispositivo.texto_prefixo_html|safe }}{% if dpt.texto == '' and not dpt.tipo_dispositivo.dispositivo_de_articulacao %}({{dpt.tipo_dispositivo}} sem texto){%else%}{{ dpt.texto|safe }}{%endif%}
    + {% if dpt.ta_publicado_id != None and not dpt.tipo_dispositivo.dispositivo_de_articulacao %} + + {{ dpt.tipo_dispositivo.nota_automatica_prefixo_html|safe }} + {% nota_automatica dpt ta_pub_list %} + {{ dpt.tipo_dispositivo.nota_automatica_sufixo_html|safe }} + + {% endif %} + {% endspaceless %} + {% if view.is_ta_alterador and dpt.tipo_dispositivo.class_css == 'bloco_alteracao'%} + {%with node=dpt template_name='compilacao/text_edit_blocoalteracao.html' %} + {%include template_name%} + {%endwith%} + {% endif%} +
    + {% endif%} - {% set_nivel_old view dpt.nivel %} + {% set_nivel_old view dpt.nivel %} {% endfor %} {% if view|isinst:'DispositivoEditView' %} - {% close_div view.flag_nivel_old view.flag_nivel_ini -1 %} + {% close_div view.flag_nivel_old view.flag_nivel_ini -1 %} {% else %} - {% close_div view.flag_nivel_old view.flag_nivel_ini 0 %} + {% close_div view.flag_nivel_old view.flag_nivel_ini 0 %} {% endif%} diff --git a/templates/compilacao/text_edit_blocoalteracao.html b/templates/compilacao/text_edit_blocoalteracao.html index 156d2770a..d9cb1f05c 100644 --- a/templates/compilacao/text_edit_blocoalteracao.html +++ b/templates/compilacao/text_edit_blocoalteracao.html @@ -1,11 +1,11 @@ {% load compilacao_filters %} {% load common_tags %} {% for ch in dpt.pk|get_bloco_atualizador %} -{% spaceless %} -
    -
    - {{ ch.tipo_dispositivo.rotulo_prefixo_html|safe }}{{ ch.rotulo }}{{ ch.tipo_dispositivo.rotulo_sufixo_html|safe }}{{ ch.tipo_dispositivo.texto_prefixo_html|safe }}{{ ch.texto|safe }} -
    -
    -{% endspaceless %} + {% spaceless %} +
    +
    + {{ ch.tipo_dispositivo.rotulo_prefixo_html|safe }}{{ ch.rotulo }}{{ ch.tipo_dispositivo.rotulo_sufixo_html|safe }}{{ ch.tipo_dispositivo.texto_prefixo_html|safe }}{{ ch.texto|safe }} +
    +
    + {% endspaceless %} {% endfor %} diff --git a/templates/compilacao/text_list.html b/templates/compilacao/text_list.html index 015863b64..218befe22 100644 --- a/templates/compilacao/text_list.html +++ b/templates/compilacao/text_list.html @@ -6,89 +6,101 @@ {% load sass_tags %} {% block head_content %} - {{block.super}} - + {{block.super}} + {% endblock %} {% block base_content %} -{% block actions %} + {% block actions %} -{% endblock actions %} + {% endblock actions %} -{% block detail_content %}{{block.super}} -{% endblock %} + {% block detail_content %} + {{block.super}} + {% endblock %} -
    +
    -{% if object_list %} + {% if object_list %}
    -
    - a - A -
    +
    + a + A +
    -{% endif %} + {% endif %} -{% for key, values in view.get_vigencias.items %} + {% for key, values in view.get_vigencias.items %} {% if forloop.first %} - - {% if view.inicio_vigencia and view.fim_vigencia %} - {% trans 'Vigência entre'%} {{view.inicio_vigencia}} {% trans 'e'%} {{view.fim_vigencia}}. - {% else%} - {% trans 'Vigência a partir de '%} {{dispositivo.inicio_vigencia}}. - {%endif%} - {% endif%} - {% endfor %} - {% else %} -
  • - {%endif%} - {% if not forloop.first and not forloop.last %} - - {% endif %} -
  • -{% endfor %} + - - -{% include 'compilacao/text_list_bloco.html'%} -
    + {% include 'compilacao/text_list_bloco.html'%} +
    {% endblock base_content %} {% block foot_js %} - {{block.super}} - - - {% if perms.compilacao.add_nota %} - - {% endif %} + {{block.super}} + + + {% if perms.compilacao.add_nota %} + + {% endif %} {% endblock %} diff --git a/templates/compilacao/text_list_bloco.html b/templates/compilacao/text_list_bloco.html index 6362a74c2..fd467cc25 100644 --- a/templates/compilacao/text_list_bloco.html +++ b/templates/compilacao/text_list_bloco.html @@ -2,170 +2,177 @@ {% load compilacao_filters %} {% load common_tags %} -
    - {% for dpt in object_list %} - {% if dpt.nivel == view.flag_nivel_old %} -
    - {% elif dpt.nivel < view.flag_nivel_old %} - {% close_div view.flag_nivel_old dpt.nivel 0 %} - {% endif%} - + {% if dpt.nivel == view.flag_nivel_old %} +
    + {% elif dpt.nivel < view.flag_nivel_old %} + {% close_div view.flag_nivel_old dpt.nivel 0 %} + {% endif%} - {% if forloop.first and view|isinst:'DispositivoView' %} - {% else %} -
    - {% endif%} + {% if forloop.first and view|isinst:'DispositivoView' %} + {% else %} +
    + {% endif%} - {% spaceless %} -
    -
    + {% spaceless %} +
    +
    + {{ dpt.tipo_dispositivo.rotulo_prefixo_html|safe }} + {{ dpt.rotulo }} + {{ dpt.tipo_dispositivo.rotulo_sufixo_html|safe }} + {{ dpt.tipo_dispositivo.texto_prefixo_html|safe }}{%if dpt.texto %}{{ dpt.texto|safe }}{%else%}{%if not dpt.tipo_dispositivo.dispositivo_de_articulacao %} {% endif %}{% endif %} + {% if dpt.ta_publicado_id and not dpt.tipo_dispositivo.dispositivo_de_articulacao %} + + {{ dpt.tipo_dispositivo.nota_automatica_prefixo_html|safe }} + {% nota_automatica dpt ta_pub_list %} + {{ dpt.tipo_dispositivo.nota_automatica_sufixo_html|safe }} + + {% endif %} + {% if user.is_authenticated and not dpt.tipo_dispositivo.dispositivo_de_articulacao%} + {% if perms.compilacao.add_nota or perms.compilacao.add_vide or perms.compilacao.change_dispositivo%} +
    +
      + {% if perms.compilacao.change_dispositivo %}
    • Ed
    • {% endif %} + {% if perms.compilacao.add_nota %}
    • N
    • {% endif %} + {% if perms.compilacao.add_vide %}
    • V
    • {% endif %} +
    +
    +
    + {% endif %} + {% endif %} +
    - {{ dpt.tipo_dispositivo.rotulo_prefixo_html|safe }} - {{ dpt.rotulo }} - {{ dpt.tipo_dispositivo.rotulo_sufixo_html|safe }} - {{ dpt.tipo_dispositivo.texto_prefixo_html|safe }}{%if dpt.texto %}{{ dpt.texto|safe }}{%else%}{%if not dpt.tipo_dispositivo.dispositivo_de_articulacao %} {%endif%}{%endif%} - {% if dpt.ta_publicado_id and not dpt.tipo_dispositivo.dispositivo_de_articulacao %} - - {{ dpt.tipo_dispositivo.nota_automatica_prefixo_html|safe }} - {% nota_automatica dpt ta_pub_list %} - {{ dpt.tipo_dispositivo.nota_automatica_sufixo_html|safe }} - - {% endif %} - {% if user.is_authenticated and not dpt.tipo_dispositivo.dispositivo_de_articulacao%} - {% if perms.compilacao.add_nota or perms.compilacao.add_vide or perms.compilacao.change_dispositivo%} -
    -
      - {% if perms.compilacao.change_dispositivo %}
    • Ed
    • {% endif %} - {% if perms.compilacao.add_nota %}
    • N
    • {% endif %} - {% if perms.compilacao.add_vide %}
    • V
    • {% endif %} -
    -
    -
    - {% endif %} - {% endif%} -
    + {% if not dpt.tipo_dispositivo.dispositivo_de_articulacao%} +
    {# Dispostivo Nota e Vides #} +
      {# Dispostivo Nota Lista#} - {% if not dpt.tipo_dispositivo.dispositivo_de_articulacao%} -
      {# Dispostivo Nota e Vides #} -
        {# Dispostivo Nota Lista#} + {% if cita and cita|lookup:dpt.pk %} + {% for vide in cita|lookup:dpt.pk %} + {%if not forloop.first %} +
      • + {% endif %} +
      • - {% if cita and cita|lookup:dpt.pk %} - {% for vide in cita|lookup:dpt.pk %} +
          + {% if user.is_authenticated %} + {% if perms.compilacao.change_vide %} +
        • Editar
        • +
        • + {% endif %} + {% if perms.compilacao.delete_vide %} +
        • Excluir
        • +
        • + {% endif %} + {% endif %} +
        • {{vide.tipo.nome}}
        • +
        • +
        • {{vide.created|date:"d M Y"}}
        • +
        +
        Vide:
        +
        + {% if vide.dispositivo_ref.dispositivo_pai.nivel != 0 and vide.dispositivo_ref.dispositivo_pai.tipo_dispositivo.dispositivo_de_articulacao %} + {{ vide.dispositivo_ref.dispositivo_pai}} + {% else %} + {{ vide.dispositivo_ref}} + {% endif %} + {% if vide.texto %} - {{vide.texto}}{% endif %} +
        +
      • + {% endfor %} + {% endif %} - {%if not forloop.first %}
      • {%endif%} -
      • + {% if citado and citado|lookup:dpt.pk %} + {% if cita and cita|lookup:dpt.pk %} +
      • + {% endif %} -
          - {% if user.is_authenticated %} - {% if perms.compilacao.change_vide %} -
        • Editar
        • -
        • - {%endif%} - {% if perms.compilacao.delete_vide %} -
        • Excluir
        • -
        • - {%endif%} - {% endif %} -
        • {{vide.tipo.nome}}
        • -
        • -
        • {{vide.created|date:"d M Y"}}
        • -
        -
        Vide:
        -
        - {% if vide.dispositivo_ref.dispositivo_pai.nivel != 0 and vide.dispositivo_ref.dispositivo_pai.tipo_dispositivo.dispositivo_de_articulacao %} - {{ vide.dispositivo_ref.dispositivo_pai}} - {% else %} - {{ vide.dispositivo_ref}} - {% endif %} - {% if vide.texto %} - {{vide.texto}}{% endif %} -
        - - {% endfor %} - {% endif %} + {% for vide in citado|lookup:dpt.pk %} + {%if not forloop.first %} +
      • + {% endif %} +
      • +
          +
        • {{vide.tipo.nome}}
        • +
        • +
        • {{vide.created|date:"d M Y"}}
        • +
        +
        Citado em:
        +
        + {% if vide.dispositivo_base.dispositivo_pai.nivel != 0 and vide.dispositivo_base.dispositivo_pai.tipo_dispositivo.dispositivo_de_articulacao%} + {{ vide.dispositivo_base.dispositivo_pai}} + {% else %} + {{ vide.dispositivo_base}} + {% endif %} + {% if vide.texto %} - {{vide.texto}}{% endif %} +
        +
      • + {% endfor %} + {% endif %} + {%if notas and notas|lookup:dpt.pk and cita and cita|lookup:dpt.pk or notas and notas|lookup:dpt.pk and citado and citado|lookup:dpt.pk %} +
      • + {% endif %} + {% if notas and notas|lookup:dpt.pk %} + {% for nota in notas|lookup:dpt.pk %} - {% if citado and citado|lookup:dpt.pk %} - {% if cita and cita|lookup:dpt.pk %}
      • {%endif%} - {% for vide in citado|lookup:dpt.pk %} - {%if not forloop.first %}
      • {%endif%} -
      • -
          -
        • {{vide.tipo.nome}}
        • -
        • -
        • {{vide.created|date:"d M Y"}}
        • -
        -
        Citado em:
        -
        - {% if vide.dispositivo_base.dispositivo_pai.nivel != 0 and vide.dispositivo_base.dispositivo_pai.tipo_dispositivo.dispositivo_de_articulacao%} - {{ vide.dispositivo_base.dispositivo_pai}} - {% else %} - {{ vide.dispositivo_base}} - {% endif %} - {% if vide.texto %} - {{vide.texto}}{% endif %} -
        -
      • - {% endfor %} - {% endif %} - {%if notas and notas|lookup:dpt.pk and cita and cita|lookup:dpt.pk or notas and notas|lookup:dpt.pk and citado and citado|lookup:dpt.pk %}
      • {%endif%} - {% if notas and notas|lookup:dpt.pk %} - {% for nota in notas|lookup:dpt.pk %} + {% if user.is_superuser or nota.publicidade == nota.NPUBL or nota.publicidade == nota.NINST and user.is_authenticated or nota.publicidade == nota.NPRIV and nota.owner == user %} + {%if not forloop.first %} +
      • + {% endif %} +
      • +
          + {% if user.is_authenticated %} + {% if user == nota.owner and perms.compilacao.change_nota or user.is_superuser%} +
        • Editar
        • +
        • + {% endif %} + {% if user == nota.owner and perms.compilacao.delete_nota or user.is_superuser %} +
        • Excluir
        • +
        • + {% endif %} + {% endif %} +
        • {{nota.tipo.nome}}
        • +
        • +
        • {%if nota.owner.first_name%}{{nota.owner.first_name}}{%else%}{{nota.owner}}{% endif %}
        • +
        • +
        • {{nota.publicacao|date:"d M Y"}}
        • +
        - {% if user.is_superuser or nota.publicidade == nota.NPUBL or nota.publicidade == nota.NINST and user.is_authenticated or nota.publicidade == nota.NPRIV and nota.owner == user %} - {%if not forloop.first %}
      • {%endif%} -
      • -
          - {% if user.is_authenticated %} - {% if user == nota.owner and perms.compilacao.change_nota or user.is_superuser%} -
        • Editar
        • -
        • - {% endif %} - {% if user == nota.owner and perms.compilacao.delete_nota or user.is_superuser %} -
        • Excluir
        • -
        • - {% endif %} - {% endif %} -
        • {{nota.tipo.nome}}
        • -
        • -
        • {%if nota.owner.first_name%}{{nota.owner.first_name}}{%else%}{{nota.owner}}{%endif%}
        • -
        • -
        • {{nota.publicacao|date:"d M Y"}}
        • -
        + {%if nota.titulo %} +
        + {%if nota.url_externa %}{% endif %}{{nota.titulo}} - {%if nota.url_externa %}{% endif %} +
        + {% endif %} +
        + {%if nota.url_externa %}{% endif %}{{ nota.texto}}{%if nota.url_externa %}{% endif %} +
        - {%if nota.titulo %} -
        - {%if nota.url_externa %}{%endif%}{{nota.titulo}} - {%if nota.url_externa %}{%endif%} -
        - {%endif%} -
        - {%if nota.url_externa %}{%endif%}{{ nota.texto}}{%if nota.url_externa %}{%endif%} -
        - - {%comment%} -
          -
        • {{nota.efetividade|date:"d M Y"}}
        • -
        • -
        • {{nota.get_publicidade_display}}
        • -
        - {%endcomment%} -
      • - {% endif %} - {% endfor %} - {% endif %} -
      -
      - {% endif%} -
    - {% endspaceless %} - {% if ta_pub_list and dpt.tipo_dispositivo.class_css == 'bloco_alteracao'%} - {%with node=dpt template_name='compilacao/text_list_blocoalteracao.html' %} - {%include template_name%} - {%endwith%} - {% endif%} - {% set_nivel_old view dpt.nivel %} + {%comment%} +
      +
    • {{nota.efetividade|date:"d M Y"}}
    • +
    • +
    • {{nota.get_publicidade_display}}
    • +
    + {%endcomment%} + + {% endif %} + {% endfor %} + {% endif %} + +
    + {% endif%} +
    + {% endspaceless %} + {% if dpt.tipo_dispositivo.class_css == 'bloco_alteracao'%} + {%with node=dpt template_name='compilacao/text_list_blocoalteracao.html' %} + {%include template_name%} + {%endwith%} + {% endif%} + {% set_nivel_old view dpt.nivel %} {% endfor %} + {% if view|isinst:'DispositivoView' %} - {% close_div view.flag_nivel_old view.flag_nivel_ini -1 %} + {% close_div view.flag_nivel_old view.flag_nivel_ini -1 %} {% else %} - {% close_div view.flag_nivel_old view.flag_nivel_ini 0 %} + {% close_div view.flag_nivel_old view.flag_nivel_ini 0 %} {% endif%} diff --git a/templates/compilacao/text_list_blocoalteracao.html b/templates/compilacao/text_list_blocoalteracao.html index ff9aabb27..402859487 100644 --- a/templates/compilacao/text_list_blocoalteracao.html +++ b/templates/compilacao/text_list_blocoalteracao.html @@ -1,13 +1,13 @@ {% load compilacao_filters %} {% load common_tags %} {% for ch in dpt.pk|get_bloco_atualizador %} -{% spaceless %} + {% spaceless %} {% if ch.visibilidade %} -
    +
    - {{ ch.tipo_dispositivo.rotulo_prefixo_html|safe }}{{ ch.rotulo }}{{ ch.tipo_dispositivo.rotulo_sufixo_html|safe }}{{ ch.tipo_dispositivo.texto_prefixo_html|safe }}{{ ch.texto|safe }} + {{ ch.tipo_dispositivo.rotulo_prefixo_html|safe }}{{ ch.rotulo }}{{ ch.tipo_dispositivo.rotulo_sufixo_html|safe }}{{ ch.tipo_dispositivo.texto_prefixo_html|safe }}{{ ch.texto|safe }}
    -
    +
    {%endif%} -{% endspaceless %} + {% endspaceless %} {% endfor %} diff --git a/templates/compilacao/textoarticulado_detail.html b/templates/compilacao/textoarticulado_detail.html index 300a10fe7..bae6dc16f 100644 --- a/templates/compilacao/textoarticulado_detail.html +++ b/templates/compilacao/textoarticulado_detail.html @@ -4,85 +4,82 @@ {% load common_tags %} {% block sections_nav %} - + {% endblock %} {% block base_content %} -{% block actions %} -
    - -{% endblock actions %} - - - -{% block detail_content %} {# TODO replace fieldset for something semantically correct, but with similar visual grouping style #} -
    - {%trans 'Identificação Básica'%} + {% endblock actions %} -
    - -
    + {% block detail_content %} {# TODO replace fieldset for something semantically correct, but with similar visual grouping style #} +
    + {%trans 'Identificação Básica'%} +
    +
    - -

    {{ object.tipo_ta}}

    + +

    {{ object.tipo_ta}}

    -
    +
    - {% if object.content_object and object.content_object.tipo%} -
    -
    + {% if object.content_object and object.content_object.tipo%} +
    +

    {{ object.content_object.tipo}}

    +
    -
    - {%endif%} + {%endif%} -
    +
    - -

    {{ object.numero}}

    + +

    {{ object.numero}}

    -
    +
    -
    +
    - -

    {{ object.ano}}

    + +

    {{ object.ano}}

    -
    +
    -
    +
    - -

    {{ object.data}}

    + +

    {{ object.data}}

    +
    -
    -
    -
    -
    +
    +
    +
    - -

    {{ object.ementa|safe}}

    + +

    {{ object.ementa|safe}}

    +
    -
    -
    -{% endblock detail_content %} {% endblock base_content %} +
    + {% endblock detail_content %} +{% endblock base_content %} diff --git a/templates/compilacao/textoarticulado_list.html b/templates/compilacao/textoarticulado_list.html index 62fd0fd0e..7381af217 100644 --- a/templates/compilacao/textoarticulado_list.html +++ b/templates/compilacao/textoarticulado_list.html @@ -4,43 +4,39 @@ {% load common_tags %} {% block base_content %} - {% block detail_content %} - {% endblock detail_content %} + {% block detail_content %} + {% endblock detail_content %} -{% block actions %} + {% block actions %}
    - - {% trans 'Adicionar'%} {%model_verbose_name 'compilacao.models.TextoArticulado'%} - - - {% include 'compilacao/textoarticulado_menu_config.html' %} - - - + + {% trans 'Adicionar'%} {%model_verbose_name 'compilacao.models.TextoArticulado'%} + + {% include 'compilacao/textoarticulado_menu_config.html' %}
    -{% endblock actions %} + {% endblock actions %} - +
    - - - - - - - + + + + + + + - {% for ta in object_list %} + {% for ta in object_list %} - - - - - + + + + + - {% endfor %} + {% endfor %} -
    {% fieldclass_verbose_name 'compilacao.models.TextoArticulado' 'tipo_ta' %}{% fieldclass_verbose_name 'compilacao.models.TextoArticulado' 'numero' %}{% fieldclass_verbose_name 'compilacao.models.TextoArticulado' 'ano' %}{% fieldclass_verbose_name 'compilacao.models.TextoArticulado' 'data' %}{% fieldclass_verbose_name 'compilacao.models.TextoArticulado' 'ementa' %}
    {% fieldclass_verbose_name 'compilacao.models.TextoArticulado' 'tipo_ta' %}{% fieldclass_verbose_name 'compilacao.models.TextoArticulado' 'numero' %}{% fieldclass_verbose_name 'compilacao.models.TextoArticulado' 'ano' %}{% fieldclass_verbose_name 'compilacao.models.TextoArticulado' 'data' %}{% fieldclass_verbose_name 'compilacao.models.TextoArticulado' 'ementa' %}
    {{ ta.tipo_ta }}{{ ta.numero }}{{ ta.ano }}{{ ta.data }}{{ ta.ementa|safe }}{{ ta.tipo_ta }}{{ ta.numero }}{{ ta.ano }}{{ ta.data }}{{ ta.ementa|safe }}
    -{% include 'paginacao.html'%} + + {% include 'paginacao.html'%} {% endblock %} diff --git a/templates/compilacao/textoarticulado_menu_config.html b/templates/compilacao/textoarticulado_menu_config.html index bd28b883b..d73ae5ac1 100644 --- a/templates/compilacao/textoarticulado_menu_config.html +++ b/templates/compilacao/textoarticulado_menu_config.html @@ -1,17 +1,16 @@ {% load i18n %} {% load common_tags %} diff --git a/templates/compilacao/tipotextoarticulado_detail.html b/templates/compilacao/tipotextoarticulado_detail.html index 02807e505..62089a736 100644 --- a/templates/compilacao/tipotextoarticulado_detail.html +++ b/templates/compilacao/tipotextoarticulado_detail.html @@ -1,54 +1,51 @@ {% extends "base.html" %} {% load i18n %} {% load compilacao_filters %} {% load common_tags %} -{% block base_content %} {# FIXME is this the best markup to use? #} +{% block base_content %} - {% block sections_nav %} - {% endblock %} -
    + {% block sections_nav %} + {% endblock %} + +
    {% block actions %} - + {% endblock actions %} - -
    - - {% block detail_content %} {# TODO replace fieldset for something semantically correct, but with similar visual grouping style #} -
    - {%trans 'Identificação Básica'%} - -
    - -
    -
    - -

    {{ object.sigla}}

    -
    -
    - -
    -
    - -

    {{ object.descricao}}

    -
    -
    - -
    -
    - -

    {{ object.content_type|default:""}}

    -
    -
    -
    -
    - -

    {{ object.get_participacao_social_display}}

    -
    -
    -
    -
    - {% endblock detail_content %} - +
    + + {% block detail_content %} {# TODO replace fieldset for something semantically correct, but with similar visual grouping style #} +
    + {%trans 'Identificação Básica'%} +
    +
    +
    + +

    {{ object.sigla}}

    +
    +
    + +
    +
    + +

    {{ object.descricao}}

    +
    +
    + +
    +
    + +

    {{ object.content_type|default:""}}

    +
    +
    +
    +
    + +

    {{ object.get_participacao_social_display}}

    +
    +
    +
    +
    + {% endblock detail_content %} {% endblock base_content %} diff --git a/templates/compilacao/tipotextoarticulado_list.html b/templates/compilacao/tipotextoarticulado_list.html index d8f89d7ad..189cea406 100644 --- a/templates/compilacao/tipotextoarticulado_list.html +++ b/templates/compilacao/tipotextoarticulado_list.html @@ -4,37 +4,35 @@ {% load common_tags %} {% block base_content %} + {% block actions %} + + {% endblock actions %} -
    - - {% trans 'Adicionar'%} {%model_verbose_name 'compilacao.models.TipoTextoArticulado'%} - - {% block more_buttons %} - - {% endblock more_buttons %} -
    - -{% if not object_list %} -

    {{ NO_ENTRIES_MSG }}

    -{% else %} - - - - - - - - - - {% for tipo_ta in object_list %} - - - - - - {% endfor %} - -
    {% fieldclass_verbose_name 'compilacao.models.TipoTextoArticulado' 'sigla' %}{% fieldclass_verbose_name 'compilacao.models.TipoTextoArticulado' 'descricao' %}{% fieldclass_verbose_name 'compilacao.models.TipoTextoArticulado' 'content_type' %}
    {{ tipo_ta.sigla }}{{ tipo_ta.descricao }}{{ tipo_ta.content_type }}
    - {%endif%} -{% include 'paginacao.html'%} + {% if not object_list %} +

    {{ NO_ENTRIES_MSG }}

    + {% else %} + + + + + + + + + + {% for tipo_ta in object_list %} + + + + + + {% endfor %} + +
    {% fieldclass_verbose_name 'compilacao.models.TipoTextoArticulado' 'sigla' %}{% fieldclass_verbose_name 'compilacao.models.TipoTextoArticulado' 'descricao' %}{% fieldclass_verbose_name 'compilacao.models.TipoTextoArticulado' 'content_type' %}
    {{ tipo_ta.sigla }}{{ tipo_ta.descricao }}{{ tipo_ta.content_type }}
    + {%endif%} + {% include 'paginacao.html'%} {% endblock %} diff --git a/templates/crud/confirm_delete.html b/templates/crud/confirm_delete.html index c42f8536f..703afe2a2 100644 --- a/templates/crud/confirm_delete.html +++ b/templates/crud/confirm_delete.html @@ -1,21 +1,24 @@ {% extends "base.html" %} {% load i18n %} -{% block base_content %} -
    {% csrf_token %} -
    - -

    - {% blocktrans %} - Tem certeza que deseja apagar
    "{{ object }}"? - {% endblocktrans %} -

    - - +{% block title %} + {% with object as title %} + {{ block.super }} + {% endwith %} +{% endblock %} -
    -
    +{% block base_content %} +
    {% csrf_token %} +
    +
    + {% blocktrans %} + Confirma exclusão de "{{ object }}"? + {% endblocktrans %} +
    + +
    +
    {% endblock %} diff --git a/templates/norma/normajuridica_detail.html b/templates/norma/normajuridica_detail.html index 6ec4edca0..1b0b041b8 100644 --- a/templates/norma/normajuridica_detail.html +++ b/templates/norma/normajuridica_detail.html @@ -1,8 +1,11 @@ {% extends "crud/detail.html" %} {% load i18n %} {% block sections_nav %} -
    - {% trans 'Início' %} + +
    +
  • {% trans 'Texto da Norma' %}
  • + {% endblock sections_nav %}