Changeset 7272 for main/waeup.sirp/trunk
- Timestamp:
- 4 Dec 2011, 18:04:39 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.sirp/trunk/src/waeup/sirp/applicants/browser.py
r7270 r7272 445 445 self.passport_url = self.url(self.context, 'passport.jpg') 446 446 # Mark application as started if applicant logs in for the first time 447 if IWorkflowState(self.context).getState() == INITIALIZED: 447 usertype = getattr(self.request.principal, 'user_type', None) 448 if usertype == 'applicant' and \ 449 IWorkflowState(self.context).getState() == INITIALIZED: 448 450 IWorkflowInfo(self.context).fireTransition('start') 449 451 return
Note: See TracChangeset for help on using the changeset viewer.