mirror of
https://forgejo.ellis.link/continuwuation/continuwuity.git
synced 2026-05-26 20:49:55 +00:00
11 lines
304 B
Django/Jinja
11 lines
304 B
Django/Jinja
|
|
<ul>
|
||
|
|
{% for scope in scopes %}
|
||
|
|
{% match scope %}
|
||
|
|
{% when Scope::ClientApi %}
|
||
|
|
<li>Interact with Matrix on your behalf</li>
|
||
|
|
{% when Scope::Device(_) %}
|
||
|
|
<li>Connect to your Matrix account</li>
|
||
|
|
{% endmatch %}
|
||
|
|
{% endfor %}
|
||
|
|
</ul>
|