Flow:
{% if flowName === 'clientCredentials' %}
Client Credentials
{% elif flowName === 'authorizationCode' %}
Authorization Code
{% else %}
{{flowName | capitalize}}
{% endif %}
{% if flow.authorizationUrl() %}
{% endif %}
{% if flow.tokenUrl() %}
{% endif %}
{% if flow.refreshUrl() %}
{% endif %}
{% if flow.scopes() %}
Scopes:
{% for scopeName, scopeDescription in flow.scopes() %}
{{scopeName}}
{% endfor %}
{% endif %}
{% endfor %}