Adjust the ipsilon template to the list of groups
This commit is contained in:
parent
118377a6dc
commit
9fecc60840
1 changed files with 6 additions and 2 deletions
|
@ -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 %}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue