web/views/cwproperties.py
changeset 2476 1294a6bdf3bf
parent 2458 4d114865098f
child 2583 b8d39602a640
--- a/web/views/cwproperties.py	Fri Jul 24 13:50:59 2009 +0200
+++ b/web/views/cwproperties.py	Fri Jul 24 14:33:37 2009 +0200
@@ -64,6 +64,7 @@
 
 
 class SystemCWPropertiesForm(FormViewMixIn, StartupView):
+    """site-wide properties edition form"""
     id = 'systempropertiesform'
     __select__ = none_rset() & match_user_groups('managers')
 
@@ -94,7 +95,6 @@
         return status
 
     def call(self, **kwargs):
-        """The default view representing the application's index"""
         self.req.add_js(('cubicweb.edition.js', 'cubicweb.preferences.js', 'cubicweb.ajax.js'))
         self.req.add_css('cubicweb.preferences.css')
         vreg = self.vreg
@@ -226,6 +226,7 @@
 
 
 class CWPropertiesForm(SystemCWPropertiesForm):
+    """user's preferences properties edition form"""
     id = 'propertiesform'
     __select__ = (
         (none_rset() & match_user_groups('users','managers'))