app/soc/views/models/club_admin.py
changeset 802 95c534d02e39
child 858 e79e7a22326f
equal deleted inserted replaced
801:06a84103ed8b 802:95c534d02e39
       
     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 for Club Admins.
       
    18 """
       
    19 
       
    20 __authors__ = [
       
    21     '"Sverre Rabbelier" <sverre@rabbelier.nl>',
       
    22   ]
       
    23 
       
    24 
       
    25 from django import forms
       
    26 
       
    27 from soc.logic import cleaning
       
    28 from soc.logic import dicts
       
    29 from soc.views.helper import redirects
       
    30 from soc.views.models import base
       
    31 from soc.views.models import club as club_view
       
    32 
       
    33 import soc.logic.models.club_admin
       
    34 
       
    35 
       
    36 class View(base.View):
       
    37   """View methods for the Program model.
       
    38   """
       
    39 
       
    40   def __init__(self, params=None):
       
    41     """Defines the fields and methods required for the base View class
       
    42     to provide the user with list, public, create, edit and delete views.
       
    43 
       
    44     Params:
       
    45       params: a dict with params for this View
       
    46     """
       
    47 
       
    48     new_params = {}
       
    49     new_params['logic'] = soc.logic.models.club_admin.logic
       
    50 
       
    51     new_params['scope_view'] = club_view
       
    52     new_params['scope_redirect'] = redirects.getCreateRedirect
       
    53 
       
    54     new_params['name'] = "Club Admin"
       
    55 
       
    56     new_params['extra_dynaexclude'] = ['user', 'org']
       
    57 
       
    58     params = dicts.merge(params, new_params)
       
    59 
       
    60     super(View, self).__init__(params=params)
       
    61 
       
    62 
       
    63 
       
    64 view = View()
       
    65 
       
    66 create = view.create
       
    67 delete = view.delete
       
    68 edit = view.edit
       
    69 list = view.list
       
    70 public = view.public