aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy Doan <doanac@beadoan.com>2014-07-31 14:15:47 +0000
committerAndy Doan <doanac@beadoan.com>2014-07-31 14:15:47 +0000
commit680f630c3e746d09c860bf076b8629b0425aea3b (patch)
tree09f64b914b051d99245faf0daabacea68a91d133
parent755f9fb776c5bcc54e73d6bd22b050ef62dba7a6 (diff)
bug #295 - fix logged-in status for new builds page
I glanced at the git history and think this may have always been broken. Hard to believe that though. Change-Id: I79bc51596719581e1c56402219ea408f8eed7cab
-rw-r--r--android_build/frontend/views.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/android_build/frontend/views.py b/android_build/frontend/views.py
index 24a4d41..17fc695 100644
--- a/android_build/frontend/views.py
+++ b/android_build/frontend/views.py
@@ -110,7 +110,6 @@ def new(request):
return HttpResponse("sorry you are not allowed here", status=403)
data = {
'request': request,
- 'user': get_username(request),
'groups': request.user.groups.all(),
}
return _render(request, 'new.html', data)