3ca8493608c36078f569e9ea248c7d7c91c40563
[wolnelektury.git] / apps / wolnelektury_core / templates / socialaccount / snippets / provider_list.html
1 {% load allauth_tags %}
2 {% load common_tags %}
3
4 {% if allauth.openid_enabled %}
5 <li><a title="Google" class="socialaccount_provider google" href="{% openid_login_url openid="https://www.google.com/accounts/o8/id" %}">
6         <img alt="Google" src="{{ STATIC_URL }}img/auth/google.png" /></a></li>
7 {% endif %}
8 {% if allauth.facebook_enabled %}
9 <li><a title="Facebook" class="socialaccount_provider facebook" href="{% facebook_login_url next=request.GET.next|build_absolute_uri:request %}">
10         <img alt="Facebook" src="{{ STATIC_URL }}img/auth/facebook.png" /></a></li>
11 {% endif %}
12 {% if allauth.twitter_enabled %}
13 <li><a title="Twitter" class="socialaccount_provider twitter" href="{% twitter_login_url %}">
14         <img alt="Twitter" src="{{ STATIC_URL }}img/auth/twitter.png" /></a></li>
15 {% endif %}
16 {% if allauth.openid_enabled %}
17 <!--li><a title="WP.pl" class="socialaccount_provider wppl" href="{% openid_login_url openid="http://openid.wp.pl" %}">
18         <img alt="WP.pl" src="{{ STATIC_URL }}img/auth/wppl.png" /></a></li-->
19 <!--li><a title="Yahoo" class="socialaccount_provider yahoo" href="{% openid_login_url openid="http://me.yahoo.com" %}">
20         <img alt="Yahoo" src="{{ STATIC_URL }}img/auth/yahoo.png" /></a></li-->
21 <li><a title="OpenID" class="socialaccount_provider openid" href="{% openid_login_url %}">
22         <img alt="OpenID" src="{{ STATIC_URL }}img/auth/openid.png" /></a></li>
23 <!--li><a title="Hyves" class="socialaccount_provider hyves" href="{% openid_login_url openid="http://hyves.nl" %}">Hyves</a></li-->
24 {% endif %}