mirror of https://github.com/interlegis/sigi.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
383 B
17 lines
383 B
{% extends 'emails/base_email.rst' %}
|
|
{% load i18n %}
|
|
|
|
{% block title %}
|
|
{{ block.super }}
|
|
**{% trans "Início:" %} {{ start_time|date:"SHORT_DATETIME_FORMAT" }}**
|
|
**{% trans "Término:" %} {{ end_time|date:"SHORT_DATETIME_FORMAT" }}**
|
|
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
{% trans "RESULTADO" %}
|
|
=========
|
|
|
|
{% for row in report_data %}{{ row }}
|
|
{% endfor %}
|
|
{% endblock content %}
|