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

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

{% set d = data ?? {} %}
{% set sel = old.moneda ?? d.moneda ?? '' %} {% if errors.moneda is defined %}
{{ errors.moneda }}
{% endif %}
{% if errors.fecha is defined %}
{{ errors.fecha }}
{% endif %}
{% if errors.tc_venta is defined %}
{{ errors.tc_venta }}
{% endif %}
{% if errors.tc_compra is defined %}
{{ errors.tc_compra }}
{% endif %}
{% endblock %}