2018-03-28 00:35:37 +00:00
|
|
|
{% extends '@manage/users/master.twig' %}
|
|
|
|
{% from '@manage/macros.twig' import paginate %}
|
2018-03-27 03:15:03 +00:00
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<div class="container listing user-listing">
|
|
|
|
{% for user in manage_users %}
|
2018-03-31 22:28:32 +00:00
|
|
|
<label class="listing__entry user-listing__entry"{% if not user.displayColour.inherit %} style="border-color: {{ user.displayColour }}"{% endif %}>
|
2018-03-27 03:15:03 +00:00
|
|
|
<div class="listing__entry__content user-listing__entry__content">
|
2018-03-31 22:28:32 +00:00
|
|
|
<input class="listing__entry__selector" type="checkbox">
|
2018-03-28 00:35:37 +00:00
|
|
|
<a href="/profile.php?u={{ user.user_id }}" class="listing__entry__column user-listing__entry__column user-listing__entry__column--username">
|
2018-03-27 03:15:03 +00:00
|
|
|
{{ user.username }}
|
2018-03-28 00:35:37 +00:00
|
|
|
</a>
|
2018-03-31 22:28:32 +00:00
|
|
|
<div class="user-listing__avatar" style="background-image:url('/profile.php?u={{ user.user_id }}&m=avatar');"></div>
|
2018-03-27 03:15:03 +00:00
|
|
|
</div>
|
|
|
|
</label>
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
|
2018-03-28 00:35:37 +00:00
|
|
|
<div class="container container--center">
|
|
|
|
{{ paginate(manage_users) }}
|
|
|
|
</div>
|
2018-03-27 03:15:03 +00:00
|
|
|
{% endblock %}
|