# HG changeset patch # User Madhusudan.C.S # Date 1251124930 -19800 # Node ID c63bd7fcd7a9829b1ee559343d99d3acdbd5d990 # Parent 259ce59acaf73a55ef7f8f5a79df06f5c67fc3b1 Added GHOPStudent model which inherits from core Student model. diff -r 259ce59acaf7 -r c63bd7fcd7a9 app/soc/modules/ghop/models/student.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/app/soc/modules/ghop/models/student.py Mon Aug 24 20:12:10 2009 +0530 @@ -0,0 +1,35 @@ +#!/usr/bin/python2.5 +# +# Copyright 2009 the Melange authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +"""This module contains the GHOP specific Student Model. +""" + +__authors__ = [ + '"Madhusudan.C.S" ', +] + + +from google.appengine.ext import db + +from django.utils.translation import ugettext + +import soc.models.student + + +class GHOPStudent(soc.models.student.Student): + """GHOP Student model extends the basic student model. + """ + pass