app/soc/views/person.py
changeset 87 7ccc026f5793
parent 86 fd34dd071e5e
child 88 9a8180f0941a
equal deleted inserted replaced
86:fd34dd071e5e 87:7ccc026f5793
     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 django import http
       
    27 from django import shortcuts
       
    28 from django import newforms as forms
       
    29 
       
    30 from soc.models import person
       
    31 from soc.views.helpers import forms_helpers
       
    32 
       
    33 
       
    34 class ProfileForm(forms_helpers.DbModelForm):
       
    35   """Django form displayed when creating or editing a Person.
       
    36   """
       
    37 
       
    38   class Meta:
       
    39     """Inner Meta class that defines some behavior for the form.
       
    40     """
       
    41     #: db.Model subclass for which the form will gather information
       
    42     model = person.Person
       
    43 
       
    44     #: list of model fields which will *not* be gathered by the form
       
    45     exclude = ['user']
       
    46 
       
    47 
       
    48 def profile(request, template='soc/person/profile.html'):
       
    49   """View for a Person to modify the properties of a PersonModel.
       
    50 
       
    51   Args:
       
    52     request: the standard django request object.
       
    53     template: the template path to use for rendering the template.
       
    54 
       
    55   Returns:
       
    56     A subclass of django.http.HttpResponse which either contains the form to
       
    57     be filled out, or a redirect to the correct view in the interface.
       
    58   """
       
    59   user = users.get_current_user()
       
    60   if not user:
       
    61     return http.HttpResponseRedirect(users.create_login_url(request.path))
       
    62 
       
    63   form = ProfileForm()
       
    64   if request.method=='POST':
       
    65     form = ProfileForm(request.POST)
       
    66 
       
    67     if not form.errors:
       
    68       return http.HttpResponse('This would update the model')
       
    69 
       
    70   return shortcuts.render_to_response(
       
    71       template, dictionary={'template': template, 'form': form, 'user': user})