2012-04-13 08:00:40 -04:00
|
|
|
<table class="modlog" style="width:auto">
|
|
|
|
<tr>
|
2012-05-05 11:33:10 -04:00
|
|
|
<th>{% trans 'ID' %}</th>
|
|
|
|
<th>{% trans 'Username' %}</th>
|
|
|
|
<th>{% trans 'Type' %}</th>
|
|
|
|
<th>{% trans 'Boards' %}</th>
|
|
|
|
<th>{% trans 'Last action' %}</th>
|
2012-04-13 08:00:40 -04:00
|
|
|
<th>…</th>
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
{% for user in users %}
|
|
|
|
<tr>
|
|
|
|
<td><small>{{ user.id }}</small></td>
|
2012-05-05 11:33:10 -04:00
|
|
|
<td>{{ user.username|e }}</td>
|
2012-04-13 08:00:40 -04:00
|
|
|
<td>
|
2012-05-05 11:33:10 -04:00
|
|
|
{% if user.type == constant('JANITOR') %}{% trans 'Janitor' %}
|
|
|
|
{% elseif user.type == constant('MOD') %}{% trans 'Mod' %}
|
|
|
|
{% elseif user.type == constant('ADMIN') %}{% trans 'Admin' %}
|
2012-04-13 08:00:40 -04:00
|
|
|
{% endif %}
|
|
|
|
</td>
|
|
|
|
<td>
|
2012-05-05 11:33:10 -04:00
|
|
|
{% if user.boards == '' %}
|
|
|
|
<em>{% trans 'none' %}</em>
|
|
|
|
{% elseif user.boards == '*' %}
|
|
|
|
<em>{% trans 'all boards' %}</em>
|
|
|
|
{% else %}
|
|
|
|
{# This is really messy, but IMO it beats doing it in PHP. #}
|
|
|
|
{% set boards = user.boards|split(',') %}
|
|
|
|
{% set _boards = [] %}
|
|
|
|
{% for board in boards %}
|
|
|
|
{% set _boards = _boards|push(board == '*' ? '*' : config.board_abbreviation|sprintf(board)) %}
|
|
|
|
{% endfor %}
|
|
|
|
{% set _boards = _boards|sort %}
|
|
|
|
{{ _boards|join(', ') }}
|
|
|
|
{% endif %}
|
2012-04-13 08:00:40 -04:00
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
{% if mod|hasPermission(config.mod.modlog) %}
|
2012-04-14 08:28:21 -04:00
|
|
|
{% if user.last %}
|
|
|
|
<span title="{{ user.action|e }}">{{ user.last|ago }}</span>
|
|
|
|
{% else %}
|
2012-05-05 11:33:10 -04:00
|
|
|
<em>{% trans 'never' %}</em>
|
2012-04-14 08:28:21 -04:00
|
|
|
{% endif %}
|
2012-04-13 08:00:40 -04:00
|
|
|
{% else %}
|
|
|
|
–
|
|
|
|
{% endif %}
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
{% if mod|hasPermission(config.mod.promoteusers) and user.type < constant('ADMIN') %}
|
2012-05-05 11:33:10 -04:00
|
|
|
<a style="float:left;text-decoration:none" href="?/users/{{ user.id }}/promote" title="{% trans 'Promote' %}">▲</a>
|
2012-04-13 08:00:40 -04:00
|
|
|
{% endif %}
|
|
|
|
{% if mod|hasPermission(config.mod.promoteusers) and user.type > constant('JANITOR') %}
|
2012-05-05 11:33:10 -04:00
|
|
|
<a style="float:left;text-decoration:none" href="?/users/{{ user.id }}/demote" title="{% trans 'Demote' %}">▼</a>
|
2012-04-13 08:00:40 -04:00
|
|
|
{% endif %}
|
2012-05-05 22:29:54 -04:00
|
|
|
{% if mod|hasPermission(config.mod.editusers) or (mod|hasPermission(config.mod.change_password) and mod.id == user.id) %}
|
2012-05-05 11:33:10 -04:00
|
|
|
<a class="unimportant" style="margin-left:5px;float:right" href="?/users/{{ user.id }}">[{% trans 'edit' %}]</a>
|
2012-04-13 08:00:40 -04:00
|
|
|
{% endif %}
|
|
|
|
{% if mod|hasPermission(config.mod.create_pm) %}
|
2012-05-05 11:33:10 -04:00
|
|
|
<a class="unimportant" style="margin-left:5px;float:right" href="?/new_PM/{{ user.username|e }}">[{% trans 'PM' %}]</a>
|
2012-04-13 08:00:40 -04:00
|
|
|
{% endif %}
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
2012-05-05 11:33:10 -04:00
|
|
|
|
|
|
|
{% if mod|hasPermission(config.mod.createusers) %}
|
|
|
|
<p style="text-align:center">
|
|
|
|
<a href="?/users/new">Create a new user</a>
|
|
|
|
</p>
|
|
|
|
{% endif %}
|
|
|
|
|