- Timestamp:
- 13 Jan 2012, 09:00:08 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.sirp/trunk/src/waeup/sirp/applicants/browser.py
r7459 r7467 60 60 grok.name('index') 61 61 grok.require('waeup.Public') 62 title = 'Applicants'63 62 label = 'Application Section' 64 63 pnav = 3 … … 73 72 grok.name('manage') 74 73 grok.template('applicantsrootmanagepage') 75 title = 'Applicants'76 74 label = 'Manage application section' 77 75 pnav = 3 … … 144 142 grok.name('add') 145 143 grok.template('applicantscontaineraddpage') 146 title = 'Applicants'147 144 label = 'Add applicants container' 148 145 pnav = 3 … … 229 226 230 227 @property 231 def title(self):228 def label(self): 232 229 return "Applicants Container: %s" % self.context.title 233 234 @property235 def label(self):236 return self.context.title237 230 238 231 class ApplicantsContainerManageFormPage(SIRPEditFormPage): … … 251 244 252 245 @property 253 def title(self):254 return "Applicants Container: %s" % self.context.title255 256 @property257 246 def label(self): 258 247 return 'Manage applicants container' … … 342 331 pnav = 3 343 332 344 @property345 def title(self):346 return "Applicants Container: %s" % self.context.title347 348 333 @action('Create application record') 349 334 def addApplicant(self, **data): … … 381 366 return 'set' 382 367 return 'unset' 383 384 @property385 def title(self):386 return 'Application Record %s' % self.context.application_number387 368 388 369 @property … … 486 467 487 468 @property 488 def title(self):489 return 'Online Payment Ticket %s' % self.context.p_id490 491 @property492 469 def label(self): 493 470 return '%s: Online Payment Ticket %s' % ( … … 650 627 upload, self.context, self) 651 628 return 652 653 @property654 def title(self):655 return 'Application Record %s' % self.context.application_number656 629 657 630 @property … … 767 740 grok.template('applicanteditpage') 768 741 manage_applications = False 769 title = u'Your Application Form'770 742 771 743 @property … … 879 851 'firstname', 'middlename', 'lastname', 'email', 'phone') 880 852 form_fields['phone'].custom_widget = PhoneWidget 881 882 @property883 def title(self):884 return "Applicants Container: %s" % self.context.title885 853 886 854 @property … … 936 904 grok.require('waeup.Public') 937 905 grok.template('applicantregemailsent') 938 title = 'Registration Completed'939 906 label = 'Your registration was successful' 940 907
Note: See TracChangeset for help on using the changeset viewer.