Store the state of reply and forward settings being enabled

This commit is contained in:
Pierre Jaury
2016-05-04 16:12:56 +02:00
parent a1d0eca859
commit 9efc798246
8 changed files with 16 additions and 28 deletions

View File

@@ -18,8 +18,6 @@ Manager list
<tr>
<th>Actions</th>
<th>Email</th>
<th>Created</th>
<th>Last edit</th>
</tr>
{% for manager in domain.managers %}
<tr>
@@ -27,8 +25,6 @@ Manager list
<a href="{{ url_for('.manager_delete', manager=manager.email) }}" onclick="return confirm('Are you sure?')" title="Delete"><i class="fa fa-trash"></i></a>
</td>
<td>{{ manager }}</td>
<td>{{ manager.created_at }}</td>
<td>{{ manager.updated_at or '' }}</td>
</tr>
{% endfor %}
</tbody>