Fix iterable check
This commit is contained in:
parent
95fd1ebdcb
commit
eae0817f82
1 changed files with 1 additions and 1 deletions
|
@ -12,7 +12,7 @@
|
|||
{% for entry in authz_details|dictsort %}
|
||||
<tr>
|
||||
<td>{{ entry[0] }}</td>
|
||||
{%- if entry[1] | iterable -%}
|
||||
{%- if entry[1] is iterable and not entry[1] is string -%}
|
||||
<td>{{ entry[1] | join(', ') }}</td>
|
||||
{%- else -%}
|
||||
<td>{{ entry[1] }}</td>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue