Changeset 12180
- Timestamp:
- 9 Dec 2014, 05:21:31 (10 years ago)
- Location:
- main/waeup.kofa/trunk/src/waeup/kofa
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/accesscodes/export.py
r9262 r12180 36 36 37 37 #: The title under which this exporter will be displayed 38 title = _(u'Access CodeBatches')38 title = _(u'Access Code Batches') 39 39 40 40 def mangle_value(self, value, name, context=None): … … 67 67 68 68 #: The title under which this exporter will be displayed 69 title = _(u'Access Codes')69 title = _(u'Access Codes') 70 70 71 71 def mangle_value(self, value, name, context=None): -
main/waeup.kofa/trunk/src/waeup/kofa/applicants/export.py
r12079 r12180 37 37 fields = tuple(sorted(iface_names(IApplicantsContainer))) 38 38 #: The title under which this exporter will be displayed 39 title = _(u' BasicApplicants Containers')39 title = _(u'Applicants Containers') 40 40 41 41 def mangle_value(self, value, name, context=None): -
main/waeup.kofa/trunk/src/waeup/kofa/browser/pages.py
r12104 r12180 1588 1588 # The exporter for access codes requires a special permission. 1589 1589 if not checkPermission('waeup.manageACBatches', self.context): 1590 title_name_tuples.remove((u'Access Codes', u'accesscodes'))1590 title_name_tuples.remove((u'Access Codes', u'accesscodes')) 1591 1591 return sorted(title_name_tuples) 1592 1592 -
main/waeup.kofa/trunk/src/waeup/kofa/students/batching.py
r11891 r12180 77 77 if 'state' in headerfields and 'transition' in headerfields: 78 78 raise FatalCSVError( 79 "State and transition can't be 79 "State and transition can't be imported at the same time!") 80 80 if not 'reg_number' in headerfields and not 'student_id' \ 81 81 in headerfields and not 'matric_number' in headerfields:
Note: See TracChangeset for help on using the changeset viewer.