X-Git-Url: http://gitweb.fperrin.net/?p=djsite.git;a=blobdiff_plain;f=quotes%2Fviews.py;h=002c4e34a6b8ada081f5ffcd0ffab4663c204d7a;hp=615719209327f58096622d8b3d5e8b51d3928c98;hb=5c563ff1701456a2ca7108a301e4e48457475daa;hpb=45be55604156dc0064aa32ea508df0d90ac5a17a diff --git a/quotes/views.py b/quotes/views.py index 6157192..002c4e3 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 # 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)