{% extends "base.html" %} {% load i18n static %} {% block main %}

{% trans "Backlog" %}{% if board %}{% blocktrans with board_name=board.name %} for project {{ board_name }}{% endblocktrans %}{% endif %}

{% if lists %} {% for list in lists %} {% for card in list.cards %} {% endfor %} {% endfor %}
{% trans "List" %} {% trans "ID" %} {% trans "Name" %} {% trans "Estimated time" %} {% trans "Estimated cost" %}
{{ list.name }} {{ card.idShort }} {{ card.name }} {{ card.time_estimated }} {{ card.cost_estimated|floatformat:2 }}
{% trans "Total" %} {{ board.time_estimated_total }} {{ board.cost_estimated_total|floatformat:2 }}
{% trans "Total selected" %}
{% endif %}
{% endblock %} {% block extrascript %} {% endblock %}