Added decorators
authorSverre Rabbelier <srabbelier@gmail.com>
Sun, 01 Mar 2009 20:19:22 +0000
changeset 1583 1e4c785f1adf
parent 1582 f2f352ad193f
child 1584 d8ba8c917f37
Added decorators
app/soc/views/models/club_admin.py
app/soc/views/models/club_app.py
app/soc/views/models/club_member.py
app/soc/views/models/document.py
app/soc/views/models/host.py
app/soc/views/models/mentor.py
app/soc/views/models/org_admin.py
app/soc/views/models/site.py
app/soc/views/models/sponsor.py
app/soc/views/models/timeline.py
app/soc/views/models/user.py
--- a/app/soc/views/models/club_admin.py	Sun Mar 01 20:18:23 2009 +0000
+++ b/app/soc/views/models/club_admin.py	Sun Mar 01 20:19:22 2009 +0000
@@ -29,6 +29,7 @@
 from soc.logic.models import club as club_logic
 from soc.logic.models import club_admin as club_admin_logic
 from soc.views.helper import access
+from soc.views.helper import decorators
 from soc.views.helper import dynaform
 from soc.views.helper import widgets
 from soc.views.models import club as club_view
--- a/app/soc/views/models/club_app.py	Sun Mar 01 20:18:23 2009 +0000
+++ b/app/soc/views/models/club_app.py	Sun Mar 01 20:19:22 2009 +0000
@@ -31,6 +31,7 @@
 from soc.logic.models import host as host_logic
 from soc.logic.models import club_app as club_app_logic
 from soc.views.helper import access
+from soc.views.helper import decorators
 from soc.views.models import group_app
 
 import soc.logic.dicts
--- a/app/soc/views/models/club_member.py	Sun Mar 01 20:18:23 2009 +0000
+++ b/app/soc/views/models/club_member.py	Sun Mar 01 20:19:22 2009 +0000
@@ -28,6 +28,7 @@
 from soc.logic.models import club as club_logic
 from soc.logic.models import club_admin as club_admin_logic
 from soc.views.helper import access
+from soc.views.helper import decorators
 from soc.views.helper import dynaform
 from soc.views.helper import widgets
 from soc.views.models import club as club_view
--- a/app/soc/views/models/document.py	Sun Mar 01 20:18:23 2009 +0000
+++ b/app/soc/views/models/document.py	Sun Mar 01 20:19:22 2009 +0000
@@ -36,6 +36,7 @@
 from soc.models import linkable
 from soc.views import helper
 from soc.views.helper import access
+from soc.views.helper import decorators
 from soc.views.helper import params as params_helper
 from soc.views.helper import redirects
 from soc.views.models import base
--- a/app/soc/views/models/host.py	Sun Mar 01 20:18:23 2009 +0000
+++ b/app/soc/views/models/host.py	Sun Mar 01 20:19:22 2009 +0000
@@ -32,6 +32,7 @@
 from soc.logic.models import user as user_logic
 from soc.logic.models import sponsor as sponsor_logic
 from soc.views.helper import access
+from soc.views.helper import decorators
 from soc.views.helper import dynaform
 from soc.views.helper import widgets
 from soc.views.models import role
--- a/app/soc/views/models/mentor.py	Sun Mar 01 20:18:23 2009 +0000
+++ b/app/soc/views/models/mentor.py	Sun Mar 01 20:19:22 2009 +0000
@@ -29,6 +29,7 @@
 from soc.logic import dicts
 from soc.logic.models import organization as org_logic
 from soc.views.helper import access
+from soc.views.helper import decorators
 from soc.views.helper import dynaform
 from soc.views.helper import params as params_helper
 from soc.views.helper import widgets
--- a/app/soc/views/models/org_admin.py	Sun Mar 01 20:18:23 2009 +0000
+++ b/app/soc/views/models/org_admin.py	Sun Mar 01 20:19:22 2009 +0000
@@ -31,6 +31,7 @@
 from soc.logic.models import org_admin as org_admin_logic
 from soc.logic.models import org_app as org_app_logic
 from soc.views.helper import access
+from soc.views.helper import decorators
 from soc.views.helper import dynaform
 from soc.views.helper import params as params_helper
 from soc.views.helper import widgets
--- a/app/soc/views/models/site.py	Sun Mar 01 20:18:23 2009 +0000
+++ b/app/soc/views/models/site.py	Sun Mar 01 20:19:22 2009 +0000
@@ -30,6 +30,7 @@
 from soc.logic import dicts
 from soc.views import out_of_band
 from soc.views.helper import access
+from soc.views.helper import decorators
 from soc.views.helper import redirects
 from soc.views.helper import responses
 from soc.views.helper import widgets
--- a/app/soc/views/models/sponsor.py	Sun Mar 01 20:18:23 2009 +0000
+++ b/app/soc/views/models/sponsor.py	Sun Mar 01 20:19:22 2009 +0000
@@ -28,6 +28,7 @@
 from soc.logic.models.host import logic as host_logic
 from soc.logic.models.sponsor import logic as sponsor_logic
 from soc.views.helper import access
+from soc.views.helper import decorators
 from soc.views.helper import redirects
 from soc.views.models import group
 
--- a/app/soc/views/models/timeline.py	Sun Mar 01 20:18:23 2009 +0000
+++ b/app/soc/views/models/timeline.py	Sun Mar 01 20:19:22 2009 +0000
@@ -30,6 +30,7 @@
 from soc.logic import dicts
 from soc.logic.models import program as program_logic
 from soc.views.helper import access
+from soc.views.helper import decorators
 from soc.views.helper import dynaform
 from soc.views.helper import params as params_helper
 from soc.views.models import base
--- a/app/soc/views/models/user.py	Sun Mar 01 20:18:23 2009 +0000
+++ b/app/soc/views/models/user.py	Sun Mar 01 20:19:22 2009 +0000
@@ -34,6 +34,7 @@
 from soc.logic.models.user import logic as user_logic
 from soc.views import helper
 from soc.views.helper import access
+from soc.views.helper import decorators
 from soc.views.helper import redirects
 from soc.views.helper import widgets
 from soc.views.models import base