app/soc/views/models/group_app.py
changeset 791 30da180c4bca
child 799 30a912906a57
equal deleted inserted replaced
790:19f8930592ed 791:30da180c4bca
       
     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 Group App.
       
    18 """
       
    19 
       
    20 __authors__ = [
       
    21     '"Sverre Rabbelier" <sverre@rabbelier.nl>',
       
    22   ]
       
    23 
       
    24 
       
    25 from django import forms
       
    26 
       
    27 from soc.logic import dicts
       
    28 from soc.logic.models import group_app as group_app_logic
       
    29 from soc.views.models import base
       
    30 
       
    31 import soc.logic.models.group_app
       
    32 
       
    33 
       
    34 class View(base.View):
       
    35   """View methods for the Group App model.
       
    36   """
       
    37 
       
    38   def __init__(self, params=None):
       
    39     """Defines the fields and methods required for the base View class
       
    40     to provide the user with list, public, create, edit and delete views.
       
    41 
       
    42     Params:
       
    43       params: a dict with params for this View
       
    44     """
       
    45 
       
    46     new_params = {}
       
    47     new_params['logic'] = soc.logic.models.group_app.logic
       
    48 
       
    49     new_params['name'] = "Group App"
       
    50     new_params['name_short'] = "Group App"
       
    51     new_params['name_plural'] = "Group Apps"
       
    52     new_params['url_name'] = "group_app"
       
    53     new_params['module_name'] = "group_app"
       
    54 
       
    55     params = dicts.merge(params, new_params)
       
    56 
       
    57     super(View, self).__init__(params=params)