Changeset 1431 for WAeUP_SRP


Ignore:
Timestamp:
17 Feb 2007, 15:42:31 (18 years ago)
Author:
Henrik Bettermann
Message:

new class for unsuccessful payments_view
'uniben' removed from subobject urls

Location:
WAeUP_SRP/trunk/skins
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • WAeUP_SRP/trunk/skins/waeup_custom/custom.css.dtml

    r805 r1431  
    2424
    2525table.registration td a:hover {
    26   text-decoration: underline;
     26  text-decoration: none;
    2727  white-space: nowrap;
    2828}
     
    6464}
    6565
     66table.registration td.unsuccessful{
     67  white-space: nowrap;
     68  color: gray;
     69  text-decoration:line-through;
     70  font-weight: bold;
     71}
     72
     73table.registration td.unsuccessful a {
     74  white-space: nowrap; 
     75  color: gray;
     76  text-decoration:line-through;
     77}
     78
     79table.registration td.unsuccessful a:visited {
     80  white-space: nowrap; 
     81  color: gray;
     82  text-decoration:line-through;
     83}
     84
     85table.registration td.unsuccessful a:hover {
     86  color: gray;
     87  text-decoration: underline;
     88  white-space: nowrap; 
     89}
     90
     91
    6692</dtml-with>
     93           
  • WAeUP_SRP/trunk/skins/waeup_epayment/getPaymentsFolderInfo.py

    r1427 r1431  
    5555        row['confirmed'] = 'active'
    5656    else:
    57         row['confirmed'] = ''
     57        row['confirmed'] = 'unsuccessful'
    5858    payments.append(row)
    5959   
     
    6161info['payments'] = payments
    6262return info
     63
  • WAeUP_SRP/trunk/skins/waeup_epayment/payments_view.pt

    r1427 r1431  
    3333                <strong tal:content="row/title" /></a>
    3434            </td>
    35             <td tal:attributes="class string:${row/confirmed}">
     35            <td>
    3636            <a tal:condition="python:row['is_approvable']"
    3737               tal:attributes="href string:${context/absolute_url}/${row/id}/approve_epayment;
  • WAeUP_SRP/trunk/skins/waeup_student/getStudentFolderInfo.py

    r1423 r1431  
    4444    student_id = member_id
    4545    break
    46 student_path = "%s/campus/students/%s" % (context.portal_url.getPortalPath(),student_id)
     46student_path_root = "%s/campus/students/%s" % (context.portal_url.getPortalPath(),student_id)
     47student_path = "%s/campus/students/%s" % (context.portal_url(),student_id)
    4748res = context.students_catalog(id = student_id)
    4849if not res:
     
    7879              'StudentPume': 'pume_view',
    7980              }
    80 sos = context.portal_catalog(container_path=student_path)
     81sos = context.portal_catalog(container_path=student_path_root)
    8182for so in sos:
    8283    row = {}
Note: See TracChangeset for help on using the changeset viewer.