These links should get different response codes depending on the authorization:
Public
Auth protected content
Auth + foorole protected content
Auth + foorole or barrole protected content
Auth + barrole protected content
Auth + foorole and barrole protected content
Using FastAPI Depends
Introspect token (401 expected)
{% if resources %}
Resources for this provider:
{% for resource in resources %}
{{ resource.name }}
{% endfor %}
{% endif %}