{% extends "base.html" %} {% load i18n %} {% load static %} {% block title %}{% trans "Estimate List For " %}{{ budget.name }}{% endblock title %} {% block content %}

{% trans "New Estimate" %}

{% trans "Estimate List For " %}{{ budget.name }}

{% if estimates %} {% for estimate in estimates %} {% endfor %} {% else %} {% endif %}
# {% trans "Category" %} {% trans "Amount" %}
{{ estimate.id }} {{ estimate.category.name }} {% trans "$" %} {{ estimate.amount|stringformat:".02f" }}
{% trans "No estimates found." %}
{% include 'pagination.html' %} {% endblock content %} {% block extra_js %} {% endblock extra_js %}