forked from expo/troggle
[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:
@@ -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})
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user