--- a/app/soc/models/user.py Sun Sep 21 02:16:00 2008 +0000
+++ b/app/soc/models/user.py Sun Sep 21 08:50:42 2008 +0000
@@ -23,15 +23,12 @@
]
-import logging
-
from google.appengine.api import users
from google.appengine.ext import db
from django.utils.translation import ugettext_lazy
from soc.models import base
-from soc.views.helpers import forms_helpers
class User(base.ModelWithFieldAttributes):
@@ -50,6 +47,10 @@
persons) a 1:many relationship of Person entities identified by the
User. This relation is implemented as the 'persons' back-reference
Query of the Person model 'user' reference.
+
+ documents) a 1:many relationship of Document entities identified by the
+ User. This relation is implemented as the 'user' back-reference
+ Query of the Document model 'user' reference.
"""