{% extends "base.html" %} {% load i18n %} {% load budget_tags %} {% block title %} {% blocktrans with year=start_date|date:"Y" %}Summary Year For {{ year }}{% endblocktrans %} {% endblock title %} {% block content %}

{% blocktrans with year=start_date|date:"Y" %}Summary Year For {{ year }}{% endblocktrans %}

{% if budget %}

{{ budget.name }}

{% for group in estimates_and_transactions %} {% empty %} {% endfor %}
{% trans "Category" %} {% trans "Estimated Total" %} {% trans "Actual Total" %}
{{ group.estimate.category.name }} [+]
{% if group.transactions %} {% for transaction in group.transactions %} {% endfor %}
{{ transaction.notes }} {{ transaction.date|date:"SHORT_DATE_FORMAT" }} ${{ transaction.amount|stringformat:".02f" }}
{% else %}

{% trans "No transactions found." %}

{% endif %}
${{ group.estimate.yearly_estimated_amount|stringformat:".02f" }} ${{ group.actual_amount|stringformat:".02f" }}
{% trans "No data to show." %}
 
{% trans "Total" %}: ${{ budget.yearly_estimated_total|stringformat:".02f" }} ${{ actual_total|stringformat:".02f" }}
{% else %}

{% trans "Not found no budget this year!" %}

{% endif %} {% block extra_js %} {% endblock extra_js %} {% endblock content %}