forked from Github-Mirrors/canaille
Group icons
This commit is contained in:
parent
14480020cb
commit
65e2bf7412
1 changed files with 6 additions and 0 deletions
|
@ -13,12 +13,18 @@
|
|||
</h2>
|
||||
<table class="ui table">
|
||||
<thead>
|
||||
<th></th>
|
||||
<th>{% trans %}Name{% endtrans %}</th>
|
||||
<th>{% trans %}Description{% endtrans %}</th>
|
||||
<th>{% trans %}Number of members{% endtrans %}</th>
|
||||
</thead>
|
||||
{% for group in groups %}
|
||||
<tr>
|
||||
<td>
|
||||
<a href="{{ url_for('groups.group', groupname=group.name) }}">
|
||||
<i class="users circular black inverted icon"></i>
|
||||
</a>
|
||||
</td>
|
||||
<td><a href="{{ url_for('groups.group', groupname=group.name) }}">{{ group.name }}</a></td>
|
||||
<td>{% if group.description %}{{ group.description[0] }}{% endif %}</td>
|
||||
<td>{{ group.member|len }}</td>
|
||||
|
|
Loading…
Reference in a new issue