summaryrefslogtreecommitdiffstats
path: root/todolists
diff options
context:
space:
mode:
authoreliott <eliott@cactuswax.net>2008-04-09 22:43:07 -0700
committereliott <eliott@cactuswax.net>2008-04-09 22:43:07 -0700
commit751ac09698cb58afddb3e726a29438646777e877 (patch)
treed26e51fa37ca5be6ed85826644f8d87cf2ce51dd /todolists
parentca033e91bf5e6c22369447a0f1c7fdd4e497b736 (diff)
downloadarchweb-751ac09698cb58afddb3e726a29438646777e877.tar.gz
archweb-751ac09698cb58afddb3e726a29438646777e877.zip
Removed login_required from the individual views.
Not entire dev site requires login.
Diffstat (limited to 'todolists')
-rw-r--r--todolists/views.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/todolists/views.py b/todolists/views.py
index fe8b1d42..3a96dc87 100644
--- a/todolists/views.py
+++ b/todolists/views.py
@@ -1,6 +1,6 @@
from django.http import HttpResponse, HttpResponseRedirect
from django.shortcuts import get_object_or_404
-from django.contrib.auth.decorators import login_required, user_passes_test
+from django.contrib.auth.decorators import user_passes_test
from django.contrib.auth.models import User
from archweb_dev.main.utils import render_response
from archweb_dev.main.models import Todolist, TodolistPkg, Package
@@ -10,7 +10,6 @@ from archweb_dev.main.models import Arch, Repo
import django.db
IntegrityError = django.db.backend.Database.IntegrityError
-@login_required
def flag(request, listid, pkgid):
list = get_object_or_404(Todolist, id=listid)
pkg = get_object_or_404(TodolistPkg, id=pkgid)
@@ -18,7 +17,6 @@ def flag(request, listid, pkgid):
pkg.save()
return HttpResponseRedirect('/todo/%s/' % (listid))
-@login_required
def view(request, listid):
list = get_object_or_404(Todolist, id=listid)
pkgs = TodolistPkg.objects.filter(list=list.id).order_by('pkg')
@@ -27,7 +25,6 @@ def view(request, listid):
'todolists/view.html',
{'list':list,'pkgs':pkgs})
-@login_required
def list(request):
lists = Todolist.objects.order_by('-date_added')
for l in lists:
@@ -35,7 +32,6 @@ def list(request):
list=l.id,complete=False).count() == 0
return render_response(request, 'todolists/list.html', {'lists':lists})
-@login_required
@user_passes_test(lambda u: u.has_perm('todolists.add_todolist'))
def add(request):
if request.POST: