Merge branch 'reflow'
[wolnelektury.git] / apps / wolnelektury_core / templates / socialaccount / snippets / provider_list.html
diff --git a/apps/wolnelektury_core/templates/socialaccount/snippets/provider_list.html b/apps/wolnelektury_core/templates/socialaccount/snippets/provider_list.html
deleted file mode 100644 (file)
index 80f9c2f..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-{% load socialaccount %}
-{% load static from staticfiles %}
-
-{% for provider in socialaccount.providers %}
-    {% if provider.id == "openid" %}
-        {% for brand in provider.get_brands %}
-            <li>
-                <a title="{{brand.name}}" 
-                    class="socialaccount_provider {{provider.id}} {{brand.id}}" 
-                    href="{% provider_login_url provider.id openid=brand.openid_url %}"
-                    ><img alt="{{ brand.name }}"
-                        src="{% static 'img/auth/'|add:brand.id|add:'.png' %}" /></a>
-            </li>
-        {% endfor %}
-    {% endif %}
-    <li>
-        <a title="{{provider.name}}" class="socialaccount_provider {{provider.id}}" 
-            href="{% provider_login_url provider.id %}"
-            ><img alt="{{ provider.name }}"
-                src="{% static 'img/auth/'|add:provider.id|add:'.png' %}" /></a>
-    </li>
-{% endfor %}