app/soc/models/site.py
changeset 1051 c532dd9def48
parent 970 8b5611d5b053
child 1053 3b9552cf748a
equal deleted inserted replaced
1050:77aab03aa693 1051:c532dd9def48
    24 
    24 
    25 from google.appengine.ext import db
    25 from google.appengine.ext import db
    26 
    26 
    27 from django.utils.translation import ugettext
    27 from django.utils.translation import ugettext
    28 
    28 
    29 import soc.models.presence
    29 import soc.models.tossed
    30 
    30 
    31 
    31 
    32 class Site(soc.models.presence.Presence):
    32 class Site(soc.models.tossed.Tossed):
    33   """Model of a Site, which stores per site configuration.
    33   """Model of a Site, which stores per site configuration.
    34 
    34 
    35   The Site Model stores configuration information unique to the Melange
    35   The Site Model stores configuration information unique to the Melange
    36   web site as a whole (in addition to any configuration that is common to
    36   web site as a whole (in addition to any configuration that is common to
    37   any "presence" on the site, such as a Group or Program).
    37   any "presence" on the site, such as a Group or Program).