renamed templates/error.html to templates/show_msg.html and made changes accordingly in views/user.
authornishanth
Thu, 04 Feb 2010 22:34:22 +0530
changeset 20 ec7b1751c161
parent 19 c52f7cde9861
child 21 c28774fe7ffd
renamed templates/error.html to templates/show_msg.html and made changes accordingly in views/user.
taskapp/views/user.py
templates/error.html
templates/show_msg.html
--- a/taskapp/views/user.py	Thu Feb 04 22:30:30 2010 +0530
+++ b/taskapp/views/user.py	Thu Feb 04 22:34:22 2010 +0530
@@ -6,10 +6,10 @@
 from django.contrib.auth import login, logout, authenticate
 from django.contrib.auth.models import User
 
-def show_msg(error_msg):
+def show_msg(message):
     """ simply redirect to homepage """
     
-    return render_to_response('error.html',{'error_msg':error_msg})
+    return render_to_response('show_msg.html',{'message':message})
 
 def homepage(request):
     """ check for authentication and display accordingly. """
--- a/templates/error.html	Thu Feb 04 22:30:30 2010 +0530
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,7 +0,0 @@
-{% extends 'base.html' %}
-{% block content %}
-    {% if error_msg %}
-    {{error_msg}}<br />
-    <a href="/">click here</a> to return to Homepage
-    {% endif %}
-{% endblock %}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/templates/show_msg.html	Thu Feb 04 22:34:22 2010 +0530
@@ -0,0 +1,7 @@
+{% extends 'base.html' %}
+{% block content %}
+    {% if message %}
+    {{message}}<br />
+    <a href="/">click here</a> to return to Homepage
+    {% endif %}
+{% endblock %}