{% extends 'base.html.twig' %} {% block title %}{{ action == 'create' ? 'Nuevo tipo de documento' : 'Editar tipo de documento' }}{% endblock %} {% block content %}

{{ action == 'create' ? 'Nuevo tipo de documento' : 'Editar tipo de documento' }}

{% set d = data ?? {} %}
{% if errors.codigo is defined %}
{{ errors.codigo }}
{% endif %}
{% if errors.nombre is defined %}
{{ errors.nombre }}
{% endif %}
{% set cl = old.clase ?? d.clase ?? '' %} {% if errors.clase is defined %}
{{ errors.clase }}
{% endif %}
{% set affects = old.afecta_saldo is defined ? (old.afecta_saldo ? true:false) : (d.afecta_saldo is defined ? d.afecta_saldo : true) %}
{% set active = old.activo is defined ? (old.activo ? true:false) : (d.activo is defined ? d.activo : true) %}
{% endblock %}