diff templates/code.djhtml @ 107:2bca07be6e51

Add login popup box So you can log in and immediately be redirected to the same page. Sort of like what reddit has. If Javascript is disabled, the user is simply taken to the standard login page.
author dellsystem <ilostwaldo@gmail.com>
date Tue, 11 Sep 2012 20:23:51 -0400
parents 17bc502c65a4
children b8e0bdc37e32
line wrap: on
line diff
--- a/templates/code.djhtml	Tue Sep 11 18:06:01 2012 -0400
+++ b/templates/code.djhtml	Tue Sep 11 20:23:51 2012 -0400
@@ -49,7 +49,7 @@
         {% if user.is_authenticated %}
         <a class="pill" href="">Upload a modules</a>
         {% else %}
-        <a class="pill" href="{% url auth_login %}">
+        <a class="pill login-link" href="{% url login %}">
             Login to upload modules
         </a>
         {% endif %}
@@ -67,7 +67,7 @@
         {% if user.is_authenticated %}
         <a class="pill" href="">Add a module to the forge</a>
         {% else %}
-        <a class="pill" href="{% url auth_login %}">
+        <a class="pill login-link" href="{% url login %}">
             Login to add a module to the forge
         </a>
         {% endif %}