{% load i18n socialaccount %}
{% get_providers as socialaccount_providers %}
{% for provider in socialaccount_providers %}
{% if provider.id == "openid" %}
{% for brand in provider.get_brands %}
{% trans "Sign in with" %} {{brand.name}}
{% endfor %}
{% endif %}
{% trans "Sign in with" %} {{provider.name}}
{% endfor %}