seitime-frappe/frappe/templates/emails/auto_email_report.html
Shridhar Patil 51c944fd24 Hide email footer in report (#4323)
* Hide footer in auto email reports

https://github.com/frappe/frappe/issues/3249

* convert to int to comapare
2017-10-17 14:48:54 +05:30

53 lines
1.3 KiB
HTML

{% macro get_alignment(col) %}
{%- if col.fieldtype in ('Int', 'Float', 'Currency', 'Check') %} class="text-right" {% endif -%}
{% endmacro %}
<table class="report-title" border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td>
<b>{{ title }}</b> <span style="float: right">{{ date_time }}</span>
</td>
</tr>
{% if description %}
<tr>
<td>{{ description }}</td>
</tr>
{% endif %}
</table>
{% if data %}
<table class="table table-bordered text-medium" cellpadding="0" cellspacing="0" border="0" width="100%">
<thead>
<tr>
{% for col in columns %}
<th {{- get_alignment(col) }}>
{{- _(col.label) -}}
</th>
{% endfor %}
</tr>
</thead>
<tbody>
{% for row in data %}
<tr>
{% for col in columns %}
<td {{- get_alignment(col) }}>
{{- frappe.format(row[col.fieldname], col, row) -}}
</td>
{% endfor %}
</td>
{% endfor %}
</tbody>
</table>
{% endif %}
{% if not frappe.db.get_value("System Settings", "System Settings", "hide_footer_in_auto_email_reports")|int %}
<table class="more-info" border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td>
<p>
{{ _("View report in your browser") }}:
<a href= {{report_url}} target="_blank">{{report_name}}</a>
</p>
<p>{{ _("Edit Auto Email Report Settings") }}: {{edit_report_settings}}</p>
</td>
</tr>
</table>
{% endif %}