alfortville: remove scan date column (#13950)

This commit is contained in:
Frédéric Péters 2016-11-13 19:11:37 +01:00
parent bac72875c5
commit 733103ebc8
2 changed files with 0 additions and 4 deletions

View File

@ -17,7 +17,6 @@
<div>
<table class="main">
<thead>
<th>{% trans 'Scan Date' %}</th>
<th>{% trans 'Post Date' %}</th>
<th>{% trans 'Reference' %}</th>
<th>{% trans 'Subject' %}</th>
@ -29,7 +28,6 @@
<tbody>
{% for object in mails %}
<tr data-mail-id="{{object.id}}">
<td class="r">{{object.creation_timestamp|date:"d F Y"|lower}}</td>
<td class="r">{{object.post_date|date:"d F Y"|lower}}</td>
<td class="r">{{object.reference|default:'-'}}</td>
<td class="r">{{object.subject|default:'-'}}</td>

View File

@ -12,7 +12,6 @@
<div>
<table class="main">
<thead>
<th>{% trans 'Scan Date' %}</th>
<th>{% trans 'Post Date' %}</th>
<th>{% trans 'Reference' %}</th>
<th>{% trans 'Subject' %}</th>
@ -22,7 +21,6 @@
<tbody>
{% for object in objects %}
<tr>
<td>{{object.creation_timestamp|date:"d F Y"|lower}}</td>
<td>{{object.post_date|default:'-'}}</td>
<td>{{object.reference|default:'-'}}</td>
<td>{{object.subject|default:'-'}}</td>