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>
|
</h2>
|
||||||
<table class="ui table">
|
<table class="ui table">
|
||||||
<thead>
|
<thead>
|
||||||
|
<th></th>
|
||||||
<th>{% trans %}Name{% endtrans %}</th>
|
<th>{% trans %}Name{% endtrans %}</th>
|
||||||
<th>{% trans %}Description{% endtrans %}</th>
|
<th>{% trans %}Description{% endtrans %}</th>
|
||||||
<th>{% trans %}Number of members{% endtrans %}</th>
|
<th>{% trans %}Number of members{% endtrans %}</th>
|
||||||
</thead>
|
</thead>
|
||||||
{% for group in groups %}
|
{% for group in groups %}
|
||||||
<tr>
|
<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><a href="{{ url_for('groups.group', groupname=group.name) }}">{{ group.name }}</a></td>
|
||||||
<td>{% if group.description %}{{ group.description[0] }}{% endif %}</td>
|
<td>{% if group.description %}{{ group.description[0] }}{% endif %}</td>
|
||||||
<td>{{ group.member|len }}</td>
|
<td>{{ group.member|len }}</td>
|
||||||
|
|
Loading…
Reference in a new issue