- Timestamp:
- 17 Feb 2007, 15:42:31 (18 years ago)
- Location:
- WAeUP_SRP/trunk/skins
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
WAeUP_SRP/trunk/skins/waeup_custom/custom.css.dtml
r805 r1431 24 24 25 25 table.registration td a:hover { 26 text-decoration: underline;26 text-decoration: none; 27 27 white-space: nowrap; 28 28 } … … 64 64 } 65 65 66 table.registration td.unsuccessful{ 67 white-space: nowrap; 68 color: gray; 69 text-decoration:line-through; 70 font-weight: bold; 71 } 72 73 table.registration td.unsuccessful a { 74 white-space: nowrap; 75 color: gray; 76 text-decoration:line-through; 77 } 78 79 table.registration td.unsuccessful a:visited { 80 white-space: nowrap; 81 color: gray; 82 text-decoration:line-through; 83 } 84 85 table.registration td.unsuccessful a:hover { 86 color: gray; 87 text-decoration: underline; 88 white-space: nowrap; 89 } 90 91 66 92 </dtml-with> 93 -
WAeUP_SRP/trunk/skins/waeup_epayment/getPaymentsFolderInfo.py
r1427 r1431 55 55 row['confirmed'] = 'active' 56 56 else: 57 row['confirmed'] = ' '57 row['confirmed'] = 'unsuccessful' 58 58 payments.append(row) 59 59 … … 61 61 info['payments'] = payments 62 62 return info 63 -
WAeUP_SRP/trunk/skins/waeup_epayment/payments_view.pt
r1427 r1431 33 33 <strong tal:content="row/title" /></a> 34 34 </td> 35 <td tal:attributes="class string:${row/confirmed}">35 <td> 36 36 <a tal:condition="python:row['is_approvable']" 37 37 tal:attributes="href string:${context/absolute_url}/${row/id}/approve_epayment; -
WAeUP_SRP/trunk/skins/waeup_student/getStudentFolderInfo.py
r1423 r1431 44 44 student_id = member_id 45 45 break 46 student_path = "%s/campus/students/%s" % (context.portal_url.getPortalPath(),student_id) 46 student_path_root = "%s/campus/students/%s" % (context.portal_url.getPortalPath(),student_id) 47 student_path = "%s/campus/students/%s" % (context.portal_url(),student_id) 47 48 res = context.students_catalog(id = student_id) 48 49 if not res: … … 78 79 'StudentPume': 'pume_view', 79 80 } 80 sos = context.portal_catalog(container_path=student_path )81 sos = context.portal_catalog(container_path=student_path_root) 81 82 for so in sos: 82 83 row = {}
Note: See TracChangeset for help on using the changeset viewer.