Adjust the ipsilon template to the list of groups

This commit is contained in:
Pierre-Yves Chibon 2015-07-25 23:13:15 +02:00
parent 118377a6dc
commit 9fecc60840

View file

@ -11,8 +11,12 @@
<table class="details">
{% for entry in authz_details|dictsort %}
<tr>
<td>{{entry[0]}}</td>
<td>{{entry[1]}}</td>
<td>{{ entry[0] }}</td>
{%- if entry[1] | iterable -%}
<td>{{ entry[1] | join(', ') }}</td>
{%- else -%}
<td>{{ entry[1] }}</td>
{%- endif -%}
</tr>
{% endfor %}