Add create and update date to lists

This commit is contained in:
Pierre Jaury
2016-03-20 11:31:14 +01:00
parent 99cf0b2031
commit 949df33831
4 changed files with 30 additions and 3 deletions

View File

@@ -19,6 +19,8 @@ Alias list
<th>Actions</th>
<th>Address</th>
<th>Destination</th>
<th>Created</th>
<th>Last edit</th>
</tr>
{% for alias in domain.aliases %}
<tr>
@@ -28,6 +30,8 @@ Alias list
</td>
<td>{{ alias }}</td>
<td>{{ alias.destination or '-' }}</td>
<td>{{ alias.created_at }}</td>
<td>{{ alias.updated_at or '' }}</td>
</tr>
{% endfor %}
</tbody>