mirror of https://github.com/interlegis/sapl.git
				
				
			
			You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							43 lines
						
					
					
						
							1.1 KiB
						
					
					
				
			
		
		
		
			
			
			
		
		
	
	
							43 lines
						
					
					
						
							1.1 KiB
						
					
					
				| {% extends "protocoloadm/detail_doc_detail.html" %} | |
| {% load i18n %} | |
| {% load crispy_forms_tags %} | |
| 
 | |
| {% block detail_content %} | |
| 	<fieldset> | |
| 		<legend>Documento Administrativo</legend> | |
| 	    <div class="row"> | |
| 	      <div class="col-md-4">Tipo: <b>{{doc.tipo.sigla}}</b></div> | |
| 	      <div class="col-md-4">Número: <b>{{doc.numero}}</b></div> | |
| 	      <div class="col-md-4">Ano: <b>{{doc.ano}}</b></div> | |
| 	    </div> | |
| 		Assunto: <b>{{doc.assunto}}</b> | |
| 		<br/><br/> | |
| 		<fieldset> | |
| 			<legend>Documentos Acessórios</legend> | |
| 			{% if not doc_ace_null %} | |
| 				<table style="width:100%"> | |
| 					<tr> | |
| 						<th>Documento</th> | |
| 						<th>Nome</th> | |
| 						<th>Tipo</th> | |
| 						<th>Data</th> | |
| 						<th>Autor</th> | |
| 					</tr> | |
| 					{% for d in doc_ace %} | |
| 						<tr> | |
| 							<td>{{d.arquivo}}</td> | |
| 							<td><a href="{% url 'doc_ace_adm_edit' doc.id d.id %}">{{d.nome}}</a></td> | |
| 							<td>{{d.tipo.descricao}}</td> | |
| 							<td>{{d.data|date:"d/m/Y"}}</td> | |
| 							<td>{{d.autor}}</td> | |
| 						</tr> | |
| 					{% endfor %} | |
| 				</table> | |
| 			{% else %} | |
| 				{{ doc_ace_null }} | |
| 			{% endif %} | |
| 		</fieldset> | |
| 		<br/><br/> | |
| 		{% crispy form %} | |
| 	</fieldset> | |
| {% endblock %} |