diff -r 801eee4eda9a -r bb6064b9fc9d app/soc/modules/ghop/views/models/organization.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/app/soc/modules/ghop/views/models/organization.py Sat Aug 22 04:00:56 2009 +0530 @@ -0,0 +1,84 @@ +#!/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. + +"""GHOP specific views for Organizations. +""" + +__authors__ = [ + '"Madhusudan.C.S" ' + ] + + +import datetime + +from django import forms + +from soc.logic import cleaning +from soc.logic import dicts +from soc.views.helper import decorators +from soc.views.models import organization +from soc.views.sitemap import sidebar + +import soc.cache.logic + +from soc.modules.ghop.views.models import program as ghop_program_view + +import soc.modules.ghop.logic.models.organization + + +class View(organization.View): + """View methods for the GHOP Program model. + """ + + def __init__(self, params=None): + """Defines the fields and methods required for the program View class + to provide the user with list, public, create, edit and delete views. + + Params: + params: a dict with params for this View + """ + + new_params = {} + new_params['logic'] = soc.modules.ghop.logic.models.organization.logic + new_params['scope_view'] = ghop_program_view + + new_params['name'] = "GHOP Organization" + new_params['module_name'] = "organization" + new_params['sidebar_grouping'] = 'Organizations' + + new_params['module_package'] = 'soc.modules.ghop.views.models' + new_params['url_name'] = 'ghop/org' + + new_params['extra_dynaexclude'] = ['slots', 'slots_calculated', + 'nr_applications', 'nr_mentors', + 'slots_desired', 'ideas', + 'task_quota_limit'] + + params = dicts.merge(params, new_params, sub_merge=True) + + super(View, self).__init__(params=params) + + +view = View() + +admin = decorators.view(view.admin) +create = decorators.view(view.create) +delete = decorators.view(view.delete) +edit = decorators.view(view.edit) +list = decorators.view(view.list) +public = decorators.view(view.public) +export = decorators.view(view.export) +home = decorators.view(view.home)