{% 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 %}
{% trans "Category" %} | {% trans "Estimated Total" %} | {% trans "Actual Total" %} | |||
---|---|---|---|---|---|
{{ group.estimate.category.name }}
[+]
{% if group.transactions %}
{% 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" }} |
{% trans "Not found no budget this year!" %}
{% endif %} {% block extra_js %} {% endblock extra_js %} {% endblock content %}