Har bytta ut kategoriene på forsida (#12) med hyllekartet. Et fungerende hyllekart, siden det offisielle nå er noe brukket.
This commit is contained in:
python/web
@@ -59,16 +59,8 @@ def PersonIndex(request):
|
||||
|
||||
def MapIndex(request):
|
||||
shelves = Placement.get_all_shelves()
|
||||
highlight_list = []
|
||||
if 'highlight' in request.GET:
|
||||
highlight_string = request.GET['highlight']
|
||||
for category in Category.objects.filter(id=highlight_string):
|
||||
highlight_list.append(category)
|
||||
shelf_lists = [{'shelf_name': shelf,
|
||||
'shelf_list': Placement.shelf_as_list_row_then_col(shelf)}
|
||||
for shelf in shelves]
|
||||
print highlight_list
|
||||
return render_to_response('map/index.html', {'shelf_lists': shelf_lists, 'highlight': highlight_list})
|
||||
shelf_lists = [(shelf, Placement.shelf_as_list_row_then_col(shelf)) for shelf in shelves]
|
||||
return render_to_response('map/index.html', {'shelf_lists': shelf_lists})
|
||||
|
||||
def MapView(request,shelf_identifier):
|
||||
if shelf_identifier not in Placement.get_all_shelves():
|
||||
@@ -85,7 +77,9 @@ def CategoryView(request,category_identifier):
|
||||
return render_to_response('category/view.html', {'category': category, 'book_list': book_list})
|
||||
|
||||
def IndexView(request):
|
||||
return render_to_response('index.html', {'categories': Category.objects.all().order_by('name')})
|
||||
shelves = Placement.get_all_shelves()
|
||||
shelf_lists = [(shelf, Placement.shelf_as_list_row_then_col(shelf)) for shelf in shelves]
|
||||
return render_to_response('index.html', {'categories': Category.objects.all().order_by('name'), 'shelf_lists': shelf_lists})
|
||||
|
||||
def SearchView(request):
|
||||
if 'searchterm' in request.GET:
|
||||
|
Reference in New Issue
Block a user