{% extends 'base.html.twig' %} {% block title %}Determinantes{% endblock %} {% block body %}

Listado Determinantes {{ tipo == 'A' ? 'Administrativos' : 'O' ? 'Operativos' }}

{% for esh_determinante in esh_determinantes %} {% endfor %}
Id Determinante Ponderación Valor Formula Descripción Ponderable Fecha de Creación Fecha de Actualización Ver Acciones
{{ esh_determinante.id }} {{ esh_determinante.determinante }} {{ esh_determinante.ponderacion }} {{ esh_determinante.valor_formula }} {{ esh_determinante.descripcion }} {{ esh_determinante.ponderable }} {{ esh_determinante.created_at ? esh_determinante.created_at|date('Y-m-d H:i:s') : '' }} {{ esh_determinante.updated_at ? esh_determinante.updated_at|date('Y-m-d H:i:s') : '' }}
{% endblock %}