Missing authentication on /info

This commit is contained in:
Piotr Mitros
2012-02-22 15:49:38 -05:00
parent d42198ada9
commit e18074024e

View File

@@ -51,4 +51,7 @@ def send_feedback(request):
def info(request):
''' Info page (link from main header) '''
if not request.user.is_authenticated():
return redirect('/')
return render_to_response("info.html", {})