remove some old around-search stuff
[wolnelektury.git] / apps / picture / views.py
index 105f6b8..c5be3be 100644 (file)
@@ -1,4 +1,3 @@
-from catalogue import forms
 from picture.models import Picture
 from django.utils.datastructures import SortedDict
 from django.shortcuts import render_to_response, get_object_or_404
@@ -8,8 +7,6 @@ from django.template import RequestContext
 def picture_list(request, filter=None, template_name='catalogue/picture_list.html'):
     """ generates a listing of all books, optionally filtered with a test function """
 
-    form = forms.SearchForm()
-
     pictures_by_author, orphans = Picture.picture_list()
     books_nav = SortedDict()
     for tag in pictures_by_author:
@@ -22,7 +19,6 @@ def picture_list(request, filter=None, template_name='catalogue/picture_list.htm
 
 
 def picture_detail(request, picture):
-    form = forms.SearchForm()
     picture = get_object_or_404(Picture, slug=picture)
 
     categories = SortedDict()