welco/welco/contrib/alfortville/templates/alfortville/dg-table.html

50 lines
1.1 KiB
HTML

{% extends "welco/base.html" %}
{% load i18n static %}
{% block bodyargs %}class="mail-dg-table"{% endblock %}
{% block breadcrumb %}
{{block.super}}
<a href=".">{{home_screen_title}}</a>
{% endblock %}
{% block content %}
<div class="source-mail all">
<div class="cell document top">
{% if source.get_queryset %}
<div>
<table class="main">
<thead>
<th>{% trans 'Scan Date' %}</th>
<th>{% trans 'User' %}</th>
<th>{% trans 'Category' %}</th>
<th>{% trans 'Related Forms' %}</th>
</thead>
<tbody>
{% for object in mails %}
<tr data-mail-id="{{object.id}}">
<td>{{object.creation_timestamp|date:"d F Y"|lower}}</td>
<td>{{object.contact_name }}</td>
<td>{{object.categories|join:", " }}</td>
<td>{% for association in object.associations.all %}{{association.formdef_name}}{% if not forloop.last %}, {% endif %}{% endfor %}</td>
</tr>
{% endfor %}
</tbody>
<script>
$('tr').click(function() {
window.open('../?' + $(this).data('mail-id'), target='_welco_dg');
});
</script>
</table>
</div>
{%else %}
<p class="no-mail-table">
{% trans 'There is currently no mail in this list.' %}
</p>
{% endif %}
</div>
</div>
{% endblock %}