UNPKG

llm-node

Version:
66 lines (63 loc) 1.99 kB
extends ../base.jade block content h3 Processo n.º #{item.numero} small .btn-group a(href="/processos/#{item.id}/editar", class='btn btn-primary btn-sm') i.glyphicon.glyphicon-edit span Editar processo a(href="/processos/#{item.id}/excluir", class='btn btn-danger btn-sm') i.glyphicon.glyphicon-trash span Excluir processo .media .media-body h4 Dados cadastrais |   small | #{item.cliente} |  ( | #{item.advogado} | / | #{item.responsavel} | ) h5 #{item.parteCliente||'(desconhecido)'} vs. #{item.parteContraria||'(desconhecido)'} p | Acompanhamento  | #{item.acomp} |  /  a(href="#{item.link}" target="_blank") Link p Foro: #{item.comarca}/#{item.estado} (#{item.instancia}) p Unidade: #{item.numVara} #{item.natVara} p Fase/Status: #{item.fase}/#{item.status} p Observações: #{item.observacoes} h4 Andamentos do Processo n.º #{item.numero} if !item.andamentos p Nenhum andamento encontrado. else .table-responsive table.table.table-striped.table-condensed(border='1') thead tr th # th Data th Tipo th Andamento th Relevante? th Lançado por, em th Modificado por, em th Editar/Excluir tbody each andamento, i in item.andamentos tr td= i+1 td= andamento.data td= andamento.tipo td= andamento.conteudo if (andamento.eRelevante) td Sim else td Não td Lançado por #{andamento.lancadoPor} em #{andamento.lancadoEm} | . td Modificado por #{andamento.modificadoPor} em #{andamento.modificadoEm} | .