X-Git-Url: http://gitweb.fperrin.net/?a=blobdiff_plain;f=quotes%2Fviews.py;h=df4081d5b79b251ff5523b98d283dd470b2367d2;hb=ba8a1a46983d9e26f70a6dab5a2a3aa9ebb5425b;hp=615719209327f58096622d8b3d5e8b51d3928c98;hpb=45be55604156dc0064aa32ea508df0d90ac5a17a;p=djsite.git diff --git a/quotes/views.py b/quotes/views.py index 6157192..df4081d 100644 --- a/quotes/views.py +++ b/quotes/views.py @@ -1,16 +1,14 @@ from django.shortcuts import render -from django.http import HttpResponse -from django.template import loader from random import randint -from .models import Author, Quote, Tag +from .models import Author, Work, Quote, Tag # Create your views here. def onequote(request, quote_id): q = Quote.objects.get(id=quote_id) context = { 'quote' : q } - return render(request, 'quotations/onequote.html', context) + return render(request, 'quotes/onequote.html', context) def random(request): count = Quote.objects.count() @@ -19,14 +17,19 @@ def random(request): def tags(request, tag_id): tag = Tag.objects.get(id=tag_id) context = { 'tag' : tag } - return render(request, 'quotations/tag.html', context) + return render(request, 'quotes/tag.html', context) def author(request, author_id): author = Author.objects.get(id=author_id) context = { 'author' : author } - return render(request, 'quotations/author.html', context) + return render(request, 'quotes/author.html', context) + +def work(request, work_id): + work = Work.objects.get(id=work_id) + context = { 'work': work } + return render(request, 'quotes/work.html', context) def all(request): quotes = Quote.objects.all() context = { 'quotes' : quotes } - return render(request, 'quotations/all.html', context) + return render(request, 'quotes/all.html', context)