- Timestamp:
- 30 May 2007, 10:41:15 (18 years ago)
- Location:
- WAeUP_SRP/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
WAeUP_SRP/trunk/Widgets.py
r1820 r1836 198 198 studymodes = self._getStudyModes() 199 199 if not value: 200 v = value = 'ume_ft' 200 v = value = 'ume_ft' 201 201 #import pdb;pdb.set_trace() 202 202 if not studymodes.has_key(value): … … 592 592 pume = jamb_nr_catalog(jamb_reg_no = value) 593 593 if len(pume) < 1: 594 err = 'No student record with registration number %s in %s.' % (value,jamb_nr_catalog )594 err = 'No student record with registration number %s in %s.' % (value,jamb_nr_catalog.id) 595 595 else: 596 596 datastructure['pume'] = pume[0] … … 736 736 if len(res) < 1: 737 737 logger.info('matric_no %s not found' % value) 738 err = 'No student in returning import catalog with matriculation number %s' % (value)738 err = 'No student with matriculation number %s in %s' % (value, returning.id) 739 739 break 740 740 datastructure['student'] = res[0] -
WAeUP_SRP/trunk/skins/waeup_student/layout_clearance_edit.pt
r842 r1836 35 35 id python:widget.getHtmlWidgetId()+'_widget';" 36 36 > 37 <td valign="top">37 <td> 38 38 <div class="label" tal:condition="widget/label_edit" 39 39 tal:attributes="class python:test(is_required, 'label required','label')"> … … 45 45 tal:attributes="onclick python:'toggleElementVisibility(\'%s\')' % tooltip_id;"> ? </button> 46 46 </td> 47 <td valign=" top">47 <td valign="bottom"> 48 48 <span class="field"> 49 49 <div tal:replace="structure cell/widget_rendered"/>
Note: See TracChangeset for help on using the changeset viewer.