예제 #1
0
파일: admin.py 프로젝트: ariel17/fquest
 def parents_admin(self, obj):
     """
     Returns an HTML string with links to the parent Person objects.
     """
     return persons2admin(obj.parents())
예제 #2
0
파일: admin.py 프로젝트: ariel17/fquest
 def persons_admin(self, obj):
     """
     Returns an HTML string with links to the Person objects related to the
     current event.
     """
     return persons2admin(obj.persons.all())