{% extends 'budget/base.html' %} {% load cycle from future %} {% block title %}Estimate List For {{ budget.name }}{% endblock title %} {% block budget_content %}

Estimate List For {{ budget.name }}

Add An Estimate

{% if estimates %} {% for estimate in estimates %} {% endfor %} {% else %} {% endif %}
Category Amount
{{ estimate.category.name }} ${{ estimate.amount|stringformat:".02f" }}
No estimates found.
{% include 'budget/pagination.html' %} {% endblock budget_content %}