]> git.ipfire.org Git - ipfire.org.git/blob - src/templates/voip/modules/queues.html
wiki: Only match usernames when a word starts with @
[ipfire.org.git] / src / templates / voip / modules / queues.html
1 {% for q in queues %}
2 <div class="notification">
3 <h5 class="title is-5">{{ _("Queue %s") % q }}</h5>
4
5 {% if q.members %}
6 <ul>
7 {% for m in q.members %}
8 <li>
9 {{ m }}
10
11 <small class="has-text-grey">
12 {{ _("Logged in %s") % locale.format_date(m.logged_in_at, shorter=True) }}
13 </small>
14 </li>
15 {% end %}
16 </ul>
17 {% else %}
18 <p class="has-text-grey">
19 {{ _("No Members") }}
20 </p>
21 {% end %}
22 </div>
23 {% end %}