diff --git a/resources/views/budgets/index.twig b/resources/views/budgets/index.twig index 87f9bb24ff..1753737b57 100644 --- a/resources/views/budgets/index.twig +++ b/resources/views/budgets/index.twig @@ -131,14 +131,14 @@
| {{ 'budget'|_ }} | -{{ 'budgeted'|_ }} | - - + +{{ 'budget'|_ }} | +{{ 'budgeted'|_ }} | + ++ | {% if budgetInformation[budget.id]['currentLimit'] %} {{ budget.name }} {% endif %} | -+ {% if budgetInformation[budget.id]['currentLimit'] %} + {% set repAmount = budgetInformation[budget.id]['currentLimit'].amount %} + {% else %} + {% set repAmount = '0' %} + {% endif %} + + |
{{ defaultCurrency.symbol|raw }}
- {% if budgetInformation[budget.id]['currentLimit'] %}
- {% set repAmount = budgetInformation[budget.id]['currentLimit'].amount %}
- {% else %}
- {% set repAmount = '0' %}
- {% endif %}
|
-
-
@@ -210,17 +213,22 @@
{% endif %}
{% endblock %}
- {% block scripts %}
-
+{% block styles %}
+
+{% endblock %}
-
- {% endblock %}
+{% block scripts %}
+
+
+
+{% endblock %}
|---|