mirror of https://github.com/interlegis/sapl.git
				
				
			
			
			
				Browse Source
			
			
			
			
				
		Signed-off-by: João Pedro Sconetto <sconetto.joao@gmail.com> Signed-off-by: Mariana Mendes <mare.s.mendes@gmail.com>pull/1580/head
				 5 changed files with 2 additions and 158 deletions
			
			
		| @ -1,52 +0,0 @@ | |||||
| {% extends "crud/detail.html" %} |  | ||||
| {% load i18n %} |  | ||||
| {% load crispy_forms_tags %} |  | ||||
| {% block actions %} {% endblock %} |  | ||||
| {% block detail_content %} |  | ||||
| 
 |  | ||||
| <h1>{{expediente.materia}}</h1> |  | ||||
| <hr> |  | ||||
| <fieldset> |  | ||||
| 	<legend>Identificação Básica</legend> |  | ||||
| 
 |  | ||||
| 	<b>Tipo:</b> {{expediente.materia.tipo.sigla}} - {{expediente.materia.tipo.descricao}} <br /> |  | ||||
| 	<b>Número:</b> {{expediente.materia.numero}} <br /> |  | ||||
| 	<b>Data:</b> {{expediente.materia.data_apresentacao}} <br /> |  | ||||
| 	<b>Ementa:</b> {{expediente.materia.ementa|safe}} <br /> |  | ||||
| 	<b>Indexação:</b> {{expediente.materia.indexacao}} <br /> |  | ||||
| </fieldset> |  | ||||
| <br /><br /> |  | ||||
| <fieldset> |  | ||||
| 	<legend>Outras Informações</legend> |  | ||||
| 
 |  | ||||
| 	<b>Em Tramitação?</b> {{expediente.materia.em_tramitacao|yesno:"Sim,Não"}}       |  | ||||
| 	<b>Matéria Polêmica?</b> {{expediente.materia.polemica|yesno:"Sim,Não"}}       |  | ||||
| 	<b>Regime Tramitação:</b> {{expediente.materia.regime_tramitacao}} |  | ||||
| </fieldset> |  | ||||
| <br /><br /> |  | ||||
| <fieldset> |  | ||||
| 	<legend>Documentos Acessórios</legend> |  | ||||
| 
 |  | ||||
| 	{% for d in doc_ace %} |  | ||||
| 		<b>Nome:</b> {{d.nome}}      |  | ||||
| 		<b>Tipo:</b> {{d.tipo}}      |  | ||||
| 		<b>Data:</b> {{d.data}}      |  | ||||
| 		<b>Autor:</b> {{d.autor}}      |  | ||||
| 
 |  | ||||
| 		<br /><br /> |  | ||||
| 	{% endfor %} |  | ||||
| </fieldset> |  | ||||
| <br /><br /> |  | ||||
| <fieldset> |  | ||||
| 	<legend>Tramitação{% if expediente.materia.em_tramitacao %}<a href="{% url 'sapl.materia:acompanhar_materia' expediente.materia.id %}"> >>> Acompanhar matéria <<<</a>{% endif %}</legend> |  | ||||
| 
 |  | ||||
| 	{% for t in tramitacao %} |  | ||||
| 		<b>Data: </b> {{t.data_tramitacao}}<br /> |  | ||||
| 		<b>Origem: </b> {{t.unidade_tramitacao_destino}} - <b>Destino: </b> {{t.unidade_tramitacao_local}}<br /> |  | ||||
| 		<b>Situação: </b> {{t.status}}<br /> |  | ||||
| 		<b>Última Ação: </b> {{t.texto}}<br /> |  | ||||
| 
 |  | ||||
| 		<br /> |  | ||||
| 	{% endfor %} |  | ||||
| </fieldset> |  | ||||
| {% endblock %} |  | ||||
| @ -1,59 +0,0 @@ | |||||
| {% extends "crud/detail.html" %} |  | ||||
| {% load i18n %} |  | ||||
| {% load crispy_forms_tags %} |  | ||||
| {% block actions %} {% endblock %} |  | ||||
| {% block detail_content %} |  | ||||
| 
 |  | ||||
| <h1>{{ordem.materia}}</h1> |  | ||||
| <hr> |  | ||||
| <fieldset> |  | ||||
| 	<legend>Identificação Básica</legend> |  | ||||
| 
 |  | ||||
| 	<b>Tipo:</b> {{ordem.materia.tipo.sigla}} - {{ordem.materia.tipo.descricao}} <br /> |  | ||||
| 	<b>Número:</b> {{ordem.materia.numero}} <br /> |  | ||||
| 	<b>Data:</b> {{ordem.materia.data_apresentacao}} <br /> |  | ||||
| 	<b>Ementa:</b> {{ordem.materia.ementa|safe}} <br /> |  | ||||
| 	<b>Indexação:</b> {{ordem.materia.indexacao}} <br /> |  | ||||
| </fieldset> |  | ||||
| <br /><br /> |  | ||||
| <fieldset> |  | ||||
| 	<legend>Norma Juridica Vinculada</legend> |  | ||||
| 	<!-- TODO --> |  | ||||
| 	{% for n in norma %} |  | ||||
| 		<b><a href="">{{n}}</a></b><br/> |  | ||||
| 	{% endfor %} |  | ||||
| </fieldset> |  | ||||
| <br /><br /> |  | ||||
| <fieldset> |  | ||||
| 	<legend>Outras Informações</legend> |  | ||||
| 
 |  | ||||
| 	<b>Em Tramitação?</b> {{ordem.materia.em_tramitacao|yesno:"Sim,Não"}}      <br/> |  | ||||
| 	<b>Matéria Polêmica?</b> {{ordem.materia.polemica|yesno:"Sim,Não"}}      <br/> |  | ||||
| 	<b>Regime Tramitação:</b> {{ordem.materia.regime_tramitacao}}<br/> |  | ||||
| </fieldset> |  | ||||
| <br /><br /> |  | ||||
| <fieldset> |  | ||||
| 	<legend>Documentos Acessórios</legend> |  | ||||
| 
 |  | ||||
| 	{% for d in doc_ace %} |  | ||||
| 		<b>Nome:</b> {{d.nome}}     <br/> |  | ||||
| 		<b>Tipo:</b> {{d.tipo}}     <br/> |  | ||||
| 		<b>Data:</b> {{d.data}}     <br/> |  | ||||
| 		<b>Autor:</b> {{d.autor}}     <br/> |  | ||||
| 		<br /><br /> |  | ||||
| 	{% endfor %} |  | ||||
| </fieldset> |  | ||||
| <br /><br /> |  | ||||
| <fieldset> |  | ||||
| 	<legend>Tramitação{% if ordem.materia.em_tramitacao %}<a href="{% url 'sapl.materia:acompanhar_materia' ordem.materia.id %}"> >>> Acompanhar matéria <<<</a>{% endif %}</legend> |  | ||||
| 
 |  | ||||
| 	{% for t in tramitacao %} |  | ||||
| 		<b>Data: </b> {{t.data_tramitacao}}<br /> |  | ||||
| 		<b>Origem: </b> {{t.unidade_tramitacao_destino}} - <b>Destino: </b> {{t.unidade_tramitacao_local}}<br /> |  | ||||
| 		<b>Situação: </b> {{t.status}}<br /> |  | ||||
| 		<b>Última Ação: </b> {{t.texto}}<br /> |  | ||||
| 
 |  | ||||
| 		<br /> |  | ||||
| 	{% endfor %} |  | ||||
| </fieldset> |  | ||||
| {% endblock %} |  | ||||
					Loading…
					
					
				
		Reference in new issue