Add grant info to clients list
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Pierre HUBERT 2023-04-15 10:42:49 +02:00
parent d27c542e1f
commit d5b58e471d

View File

@ -8,6 +8,8 @@
<th scope="col">Name</th> <th scope="col">Name</th>
<th scope="col">Description</th> <th scope="col">Description</th>
<th scope="col">Redirect URI</th> <th scope="col">Redirect URI</th>
<th scope="col">Default</th>
<th scope="col">Granted to all users</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
@ -17,6 +19,8 @@
<td>{{ c.name }}</td> <td>{{ c.name }}</td>
<td>{{ c.description }}</td> <td>{{ c.description }}</td>
<td>{{ c.redirect_uri }}</td> <td>{{ c.redirect_uri }}</td>
<td>{% if c.default %}YES{% else %}NO{% endif %}</td>
<td>{% if c.granted_to_all_users %}YES{% else %}NO{% endif %}</td>
</tr> </tr>
{% endfor %} {% endfor %}
</tbody> </tbody>