forked from 00dani/lemoncurry
Install django-annoying, which provides some nice shortcuts for common operations
This commit is contained in:
parent
88bf1e580c
commit
21786d6e6c
5 changed files with 23 additions and 13 deletions
|
@ -1,21 +1,21 @@
|
|||
from django.shortcuts import redirect, render
|
||||
from annoying.decorators import render_to
|
||||
from django.shortcuts import redirect
|
||||
from .models import Entry
|
||||
|
||||
|
||||
@render_to('entries/index.html')
|
||||
def index(request, kind):
|
||||
entries = Entry.objects.filter(kind=kind.id)
|
||||
return render(request, 'entries/index.html', {
|
||||
'entries': entries,
|
||||
'title': kind.plural
|
||||
})
|
||||
return {'entries': entries, 'title': kind.plural}
|
||||
|
||||
|
||||
@render_to('entries/entry.html')
|
||||
def entry(request, id, slug=None):
|
||||
entry = Entry.objects.get(pk=id)
|
||||
if request.path != entry.url:
|
||||
return redirect(entry.url, permanent=True)
|
||||
return render(request, 'entries/entry.html', {
|
||||
return {
|
||||
'entry': entry,
|
||||
'title': entry.title,
|
||||
'meta': entry.as_meta(request)
|
||||
})
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue