[svn] make the person logbooks work

Copied from http://cucc@cucc.survex.com/svn/trunk/expoweb/troggle/, rev. 8044 by julian @ 10/30/2008 1:13 PM
This commit is contained in:
substantialnoninfringinguser
2009-05-13 05:15:49 +01:00
parent 01073863f3
commit 32e1e6b9ab
6 changed files with 20 additions and 9 deletions

View File

@@ -10,3 +10,8 @@ def person(request, person_id):
person = Person.objects.filter(id = person_id)[0]
return render_to_response('person.html', {'person': person, 'settings': settings})
def logbookentry(request, logbookentry_id):
logbookentry = LogbookEntry.objects.filter(id = logbookentry_id)[0]
return render_to_response('logbookentry.html', {'logbookentry': logbookentry, 'settings': settings})