{% extends "propesqBundle::layout.html.twig" %} {% import "propesqBundle:Form:function.html.twig" as form %} {% block stylesheets %} {% endblock %} {% block content %}

{{ 'cabecalho.visualizar.estatpescaprepesc'|trans }}

{{ form.show('entidade.estatpescaprepesc.data', entity.data ? entity.data|date('d/m/Y') : '') }}
{{ form.show('entidade.estatpescaprepesc.codMunicipio', entity.codLocalidade and entity.codLocalidade.codMunicipio ? entity.codLocalidade.codMunicipio.txtNome : '') }}
{{ form.show('entidade.estatpescaprepesc.codLocalidade', entity.codLocalidade ? entity.codLocalidade.txtNome : '') }}
{{ form.show('entidade.estatpescaprepesc.codEspecie', entity.codEspecie ? entity.codEspecie.txtNome : '') }}
{{ form.show('entidade.estatpescaprepesc.preco', entity.preco is not null ? entity.preco|number_format(2, ',', '.') : '') }}
{{ form.show('entidade.estatpescaprepesc.codUsuario', entity.codUsuario ? entity.codUsuario.codPessoa : '') }}
{{ form.show('entidade.estatpescaprepesc.indValidado', entity.indValidado == 1 ? 'Sim' : 'Não') }}
{{ form.show('entidade.estatpescaprepesc.responsavelValidacao', entity.codRespAnalise and entity.codRespAnalise.codPessoa ? entity.codRespAnalise.codPessoa.txtNome : '') }}
{{ form.show('entidade.estatpescaprepesc.datAnalise', entity.datAnalise ? entity.datAnalise|date('d/m/Y H:i') : '') }}
{% endblock %}