X-Git-Url: http://gitweb.fperrin.net/?a=blobdiff_plain;f=quotes%2Fviews.py;h=bd7f6f605bb142cd44ad196368fa252162dd421c;hb=13c2e4fc8a5506cfa074c06335a73d28a173aba9;hp=615719209327f58096622d8b3d5e8b51d3928c98;hpb=45be55604156dc0064aa32ea508df0d90ac5a17a;p=djsite.git diff --git a/quotes/views.py b/quotes/views.py index 6157192..bd7f6f6 100644 --- a/quotes/views.py +++ b/quotes/views.py @@ -4,13 +4,13 @@ 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 +19,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)