{% extends "base.html" %} {% block contenido %}
{{ _("Estado") }}:
{{ _("Borrador") if budget.status == "draft" else _("Aprobado") if budget.status == "approved" else _("Cerrado") }}
{{ _("Libro") }}:
{{ budget.ledger_id }}
{{ _("Moneda") }}:
{{ budget.currency_id }}
{{ _("Descripción") }}:
{{ budget.description }}
{{ _("Esta vista detalla el monto asignado a cada período del presupuesto para facilitar el seguimiento de su ejecución.") }}
| {{ _("Período") }} | {{ _("Monto") }} |
|---|---|
| {{ p.name }} | {{ totals.get(p.id, 0)|format_currency }} |
| {{ _("Cuenta") }} | {{ _("Centro de Costo") }} | {{ _("Dimensiones") }} | {{ _("Período") }} | {{ _("Monto") }} | {% if budget.status == 'draft' %}{{ _("Acciones") }} | {% endif %}
|---|---|---|---|---|---|
| {{ acc.code }} - {{ acc.name }} | {{ cc.code }} - {{ cc.name }} | {% if unit %} {{ unit.name }}{% endif %} {% if project %} {{ project.name }}{% endif %} | {{ per.name }} | {{ line.amount|format_currency }} | {% if budget.status == 'draft' %}{% endif %} |
| {{ _("No hay líneas registradas.") }} | |||||