There was an error while loading. Please reload this page.
1 parent ecd7002 commit 3df80faCopy full SHA for 3df80fa
1 file changed
templates/clients/show.twig
@@ -246,23 +246,31 @@
246
{{ 'Grant Types'|trans }}
247
</td>
248
<td>
249
+ {% if client.grantTypes is not empty %}
250
<ul class="disc">
251
{% for grantType in client.grantTypes %}
252
<li>{{ grantType }}</li>
253
{% endfor %}
254
</ul>
255
+ {% else %}
256
+ {{ 'N/A'|trans }}
257
+ {% endif %}
258
259
</tr>
260
<tr>
261
<td class="client-col col-property">
262
{{ 'Response Types'|trans }}
263
264
265
+ {% if client.responseTypes is not empty %}
266
267
{% for responseType in client.responseTypes %}
268
<li>{{ responseType }}</li>
269
270
271
272
273
274
275
276
0 commit comments