Projet

Général

Profil

0001-alfortville-remove-scan-date-column-13950.patch

Frédéric Péters, 13 novembre 2016 19:12

Télécharger (2,03 ko)

Voir les différences:

Subject: [PATCH] alfortville: remove scan date column (#13950)

 welco/contrib/alfortville/templates/alfortville/dg-table.html           | 2 --
 welco/contrib/alfortville/templates/alfortville/mail-table-waiting.html | 2 --
 2 files changed, 4 deletions(-)
welco/contrib/alfortville/templates/alfortville/dg-table.html
17 17
<div>
18 18
<table class="main">
19 19
<thead>
20
 <th>{% trans 'Scan Date' %}</th>
21 20
 <th>{% trans 'Post Date' %}</th>
22 21
 <th>{% trans 'Reference' %}</th>
23 22
 <th>{% trans 'Subject' %}</th>
......
29 28
<tbody>
30 29
{% for object in mails %}
31 30
<tr data-mail-id="{{object.id}}">
32
  <td class="r">{{object.creation_timestamp|date:"d F Y"|lower}}</td>
33 31
  <td class="r">{{object.post_date|date:"d F Y"|lower}}</td>
34 32
  <td class="r">{{object.reference|default:'-'}}</td>
35 33
  <td class="r">{{object.subject|default:'-'}}</td>
welco/contrib/alfortville/templates/alfortville/mail-table-waiting.html
12 12
<div>
13 13
<table class="main">
14 14
<thead>
15
 <th>{% trans 'Scan Date' %}</th>
16 15
 <th>{% trans 'Post Date' %}</th>
17 16
 <th>{% trans 'Reference' %}</th>
18 17
 <th>{% trans 'Subject' %}</th>
......
22 21
<tbody>
23 22
{% for object in objects %}
24 23
<tr>
25
  <td>{{object.creation_timestamp|date:"d F Y"|lower}}</td>
26 24
  <td>{{object.post_date|default:'-'}}</td>
27 25
  <td>{{object.reference|default:'-'}}</td>
28 26
  <td>{{object.subject|default:'-'}}</td>
29
-