soc/views/person.py
changeset 31 8b43c541afa7
child 32 670a4571f496
equal deleted inserted replaced
30:636baa95715c 31:8b43c541afa7
       
     1 #!/usr/bin/python2.5
       
     2 #
       
     3 # Copyright 2008 the Melange authors.
       
     4 #
       
     5 # Licensed under the Apache License, Version 2.0 (the "License");
       
     6 # you may not use this file except in compliance with the License.
       
     7 # You may obtain a copy of the License at
       
     8 #
       
     9 #   http://www.apache.org/licenses/LICENSE-2.0
       
    10 #
       
    11 # Unless required by applicable law or agreed to in writing, software
       
    12 # distributed under the License is distributed on an "AS IS" BASIS,
       
    13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
       
    14 # See the License for the specific language governing permissions and
       
    15 # limitations under the License.
       
    16 
       
    17 """Views relevant to the Person role.
       
    18 """
       
    19 
       
    20 __authors__ = [
       
    21   '"Augie Fackler" <durin42@gmail.com>',
       
    22   ]
       
    23 
       
    24 
       
    25 from google.appengine.api import users
       
    26 from google.appengine.ext.db import djangoforms
       
    27 from django import http
       
    28 from django import shortcuts
       
    29 from django import newforms as forms
       
    30 
       
    31 from soc.models import person
       
    32 
       
    33 
       
    34 class ProfileForm(djangoforms.ModelForm):
       
    35   class Meta:
       
    36     """Inner Meta class that defines some behavior for the form.
       
    37 
       
    38     """
       
    39     #: the db.Model subclass for which the form will gather information.
       
    40     model = person.Person
       
    41     #: the list of model fields which will *not* be gathered by the form.
       
    42     exclude = ['user', ]
       
    43 
       
    44 
       
    45 def profile(request, template='soc/profile.html'):
       
    46   """View for a Person to modify the properties of a PersonModel.
       
    47 
       
    48   Args:
       
    49     request: the standard django request object.
       
    50     template: the template path to use for rendering the template.
       
    51 
       
    52   Returns:
       
    53     A subclass of django.http.HttpResponse which either contains the form to
       
    54     be filled out, or a redirect to the correct view in the interface.
       
    55   """
       
    56   user = users.get_current_user()
       
    57   if not user:
       
    58     return http.HttpResponseRedirect(users.create_login_url(request.path))
       
    59   form = ProfileForm()
       
    60   if request.method=='POST':
       
    61     form = ProfileForm(request.POST)
       
    62     if not form.errors:
       
    63       return http.HttpResponse('This would update the model')
       
    64   return shortcuts.render_to_response(
       
    65       template, dictionary={'template': template, 'form': form, 'user': user})