app/soc/models/organization.py
changeset 775 d18d286df40f
parent 773 fefaf4628a4d
child 834 b60c9ccbeaa5
equal deleted inserted replaced
774:88a827a9b614 775:d18d286df40f
    12 # distributed under the License is distributed on an "AS IS" BASIS,
    12 # distributed under the License is distributed on an "AS IS" BASIS,
    13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    14 # See the License for the specific language governing permissions and
    14 # See the License for the specific language governing permissions and
    15 # limitations under the License.
    15 # limitations under the License.
    16 
    16 
    17 """This module contains the Organization Model."""
    17 """This module contains the Organization Model.
       
    18 """
    18 
    19 
    19 __authors__ = [
    20 __authors__ = [
    20   '"Pawel Solyga" <pawel.solyga@gmail.com>',
    21   '"Pawel Solyga" <pawel.solyga@gmail.com>',
    21 ]
    22 ]
    22 
    23 
       
    24 
       
    25 from google.appengine.ext import db
       
    26 
       
    27 from django.utils.translation import ugettext_lazy
    23 
    28 
    24 import soc.models.group
    29 import soc.models.group
    25 
    30 
    26 
    31 
    27 class Organization(soc.models.group.Group):
    32 class Organization(soc.models.group.Group):