hiding away some stuff that I'm mostly done with for now...

This commit is contained in:
Dan Buch
2012-07-09 20:14:14 -04:00
parent b9e8e70867
commit 3b7d21b12f
36 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
from server.families import Families
__families__ = Families()
family = __families__.get_by_surname(path['surname'])
if family:
response.body = {'family': family}
else:
response.code = 404
# vim:filetype=python