2016-04-05 11:40:13 +01:00
|
|
|
|
{% from "components/table.html" import list_table, field, right_aligned_field_heading %}
|
|
|
|
|
|
{% call(item) list_table(
|
|
|
|
|
|
template_statistics,
|
|
|
|
|
|
caption="Recent templates used",
|
|
|
|
|
|
empty_message='You haven’t sent any batch messages yet',
|
2016-04-05 13:49:22 +01:00
|
|
|
|
field_headings=['Template', 'Type', right_aligned_field_heading('Usage')]
|
2016-04-05 11:40:13 +01:00
|
|
|
|
) %}
|
|
|
|
|
|
{% call field() %}
|
|
|
|
|
|
<a href="{{ url_for('.edit_service_template', service_id=service_id, template_id=item.template.id) }}">
|
|
|
|
|
|
{{ item.template.name }}
|
|
|
|
|
|
</a>
|
|
|
|
|
|
{% endcall %}
|
|
|
|
|
|
{% call field() %}
|
|
|
|
|
|
{{item.template.template_type}}
|
|
|
|
|
|
{% endcall %}
|
|
|
|
|
|
{% call field(align='right') %}
|
|
|
|
|
|
{{ item.usage_count }}
|
|
|
|
|
|
{% endcall %}
|
|
|
|
|
|
{% endcall %}
|
|
|
|
|
|
|