{% extends "admin/base_site.html" %}
{% comment %}
This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/.
{% endcomment %}
{% load proto_tags %}
{% load static %}
{% load i18n %}
{% block extrahead %}
{% endblock %}
{% block breadcrumbs %}
{% endblock %}
{% block content %}
Relatório gerencial do ano de {{ ano }}
Modalidade |
{% for t in termos %}
{{ t }} |
{% endfor %}
Total |
{% for m in modalidades %}
{{ m.modalidade }} |
{% for t in m.termos %}
{{ t.valor|moeda_css:m.moeda_nacional }} |
{% endfor %}
{{ m.total|moeda_css:m.moeda_nacional }} |
{% endfor %}
{% for m in modalidades %}
{{ m.modalidade }}
Item |
{% for t in termos %}
{{ t }} |
{% endfor %}
Total |
{% for item in m.itens %}
{{ item.descricao }} |
{% for t in item.termos %}
{{ t|moeda_css:m.moeda_nacional }} |
{% endfor %}
{{ item.total|moeda_css:m.moeda_nacional }} |
{% endfor %}
{% endfor %}
{% endblock %}