Changeset 7592 for main/waeup.sirp
- Timestamp:
- 6 Feb 2012, 16:58:55 (13 years ago)
- Location:
- main/waeup.sirp/trunk/src/waeup/sirp
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.sirp/trunk/src/waeup/sirp/browser/resources.py
r7484 r7592 148 148 #: * In the `update()` method of the responsible view/page/form 149 149 #: require the JavaScript code to be rendered into the page and set 150 # 150 #: tab for redirection:: 151 151 #: 152 152 #: from waeup.sirp.browser.resources import tabs 153 #: # ...154 #: class MyPage(...): 155 #: # ...153 #: 154 #: class MyPage(...): 155 #: 156 156 #: def update(self): 157 157 #: tabs.need() … … 159 159 #: qs = self.request.get('QUERY_STRING', '') 160 160 #: if not qs: 161 #: 161 #: qs = 'tab1' 162 162 #: setattr(self, qs, 'active') 163 163 #: … … 168 168 #: 169 169 #: .. code-block:: html 170 170 #: 171 171 #: <ul class="tabs" data-tabs="tabs" > 172 172 #: <li tal:attributes="class view/tab1"><a href="#tab-1">Tab 1 Heading</a></li> -
main/waeup.sirp/trunk/src/waeup/sirp/students/__init__.py
r7159 r7592 18 18 'StudentStudyCourse', 19 19 'StudentPaymentsContainer', 20 'StudentAccommodation' 20 'StudentAccommodation', 21 21 'StudentPrincipalRoleManager', 22 22 ] -
main/waeup.sirp/trunk/src/waeup/sirp/students/authentication.py
r7364 r7592 176 176 SessionCredentialsPlugin): 177 177 """A session credentials plugin that handles the case of a user 178 178 changing his/her own password. 179 179 180 180 When users change their own password they might find themselves
Note: See TracChangeset for help on using the changeset viewer.