|
|
@ -17,6 +17,7 @@ User list
|
|
|
|
<tbody>
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<tr>
|
|
|
|
<th>Actions</th>
|
|
|
|
<th>Actions</th>
|
|
|
|
|
|
|
|
<th>User settings</th>
|
|
|
|
<th>Address</th>
|
|
|
|
<th>Address</th>
|
|
|
|
<th>Features</th>
|
|
|
|
<th>Features</th>
|
|
|
|
<th>Quota</th>
|
|
|
|
<th>Quota</th>
|
|
|
@ -26,14 +27,15 @@ User list
|
|
|
|
</tr>
|
|
|
|
</tr>
|
|
|
|
{% for user in domain.users %}
|
|
|
|
{% for user in domain.users %}
|
|
|
|
<tr>
|
|
|
|
<tr>
|
|
|
|
|
|
|
|
<td>
|
|
|
|
|
|
|
|
<a href="{{ url_for('.user_edit', user_email=user.get_id()) }}" title="Edit"><i class="fa fa-pencil"></i></a>
|
|
|
|
|
|
|
|
<a href="{{ url_for('.user_delete', user_email=user.get_id()) }}" onclick="return confirm('Are you sure?')" title="Delete"><i class="fa fa-trash"></i></a>
|
|
|
|
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<td>
|
|
|
|
<a href="{{ url_for('.user_settings', user_email=user.get_id()) }}" title="Settings"><i class="fa fa-wrench"></i></a>
|
|
|
|
<a href="{{ url_for('.user_settings', user_email=user.get_id()) }}" title="Settings"><i class="fa fa-wrench"></i></a>
|
|
|
|
<a href="{{ url_for('.user_password', user_email=user.get_id()) }}" title="Update password"><i class="fa fa-lock"></i></a>
|
|
|
|
|
|
|
|
<a href="{{ url_for('.user_forward', user_email=user.get_id()) }}" title="Auto-forward"><i class="fa fa-share"></i></a>
|
|
|
|
<a href="{{ url_for('.user_forward', user_email=user.get_id()) }}" title="Auto-forward"><i class="fa fa-share"></i></a>
|
|
|
|
<a href="{{ url_for('.user_reply', user_email=user.get_id()) }}" title="Auto-reply"><i class="fa fa-plane"></i></a>
|
|
|
|
<a href="{{ url_for('.user_reply', user_email=user.get_id()) }}" title="Auto-reply"><i class="fa fa-plane"></i></a>
|
|
|
|
<a href="{{ url_for('.user_fetchmail', user_email=user.get_id()) }}" title="Fetched accounts"><i class="fa fa-download"></i></a>
|
|
|
|
<a href="{{ url_for('.user_fetchmail', user_email=user.get_id()) }}" title="Fetched accounts"><i class="fa fa-download"></i></a>
|
|
|
|
<a href="{{ url_for('.user_edit', user_email=user.get_id()) }}" title="Edit"><i class="fa fa-pencil"></i></a>
|
|
|
|
|
|
|
|
<a href="{{ url_for('.user_delete', user_email=user.get_id()) }}" onclick="return confirm('Are you sure?')" title="Delete"><i class="fa fa-trash"></i></a>
|
|
|
|
|
|
|
|
</td>
|
|
|
|
</td>
|
|
|
|
<td>{{ user }}</td>
|
|
|
|
<td>{{ user }}</td>
|
|
|
|
<td>
|
|
|
|
<td>
|
|
|
|