X-Git-Url: https://git.mdrn.pl/cas.git/blobdiff_plain/37e278e43ece42375352c07d9f04991ef58d992c..a6bc469288a27a94f4c062a33701b7a57746dbb7:/src/accounts/templates/account/profile.html diff --git a/src/accounts/templates/account/profile.html b/src/accounts/templates/account/profile.html index 15e5eaf..6c907cc 100644 --- a/src/accounts/templates/account/profile.html +++ b/src/accounts/templates/account/profile.html @@ -2,18 +2,23 @@ {% load gravatar i18n %} {% block content %} -
- -

{% trans "Logout" %}

-
+
{% if messages %} -

{% for message in messages %}{{ message }}{% endfor %}

+
+ {% for message in messages %}

{{ message }}

{% endfor %} +
{% endif %} -

{% trans "Your profile" %}

+

{% trans "Your profile" %}

+ {% csrf_token %} {{ basic_form.as_table }} @@ -22,6 +27,7 @@

{% trans "Password change" %}

+ {% csrf_token %}
{{ pass_form.as_table }} @@ -29,13 +35,14 @@ -
-

{% trans "Availble services" %}

- - - - - - -
-{% endblock %} \ No newline at end of file + {% if services %} +
+

{% trans "Sign in to:" %}

+ {% for service in services %} + + {{ service.name }} + + {% endfor %} +
+ {% endif %} +{% endblock %}