Changeset 653 for WAeUP_SRP/trunk


Ignore:
Timestamp:
11 Oct 2006, 07:54:06 (18 years ago)
Author:
Henrik Bettermann
Message:

files renamed (_index deleted)

Location:
WAeUP_SRP/trunk/skins/waeup_academics
Files:
6 added
6 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • WAeUP_SRP/trunk/skins/waeup_academics/academics_index.py

    r615 r653  
    2424if context.isManager() or context.isStudent():
    2525    if context.portal_type == 'AcademicsFolder':
    26         return context.academics.academics_index_view()
     26        return context.academics.academics_view()
    2727    elif context.portal_type == 'Faculty':
    28         return context.faculty_index_view()
     28        return context.faculty_view()
    2929    elif context.portal_type == 'Department':
    30         return context.department_index_view()
     30        return context.department_view()
    3131    elif context.portal_type == 'CoursesFolder':
    32         return context.courses_index_view()
     32        return context.courses_view()
    3333    elif context.portal_type == 'Certificate':
    34         return context.certificate_index_view()
     34        return context.certificate_view()
    3535    elif context.portal_type == 'StudyLevel':
    36         return context.level_index_view()
     36        return context.level_view()
    3737    elif context.portal_type in ('CertificateCourse','Course'):
    3838        return context.academics_document_view()
  • WAeUP_SRP/trunk/skins/waeup_academics/getCoursesCertificatesInfo.py

    r603 r653  
    2020info['is_manager'] = context.isManager()
    2121info['is_student'] = context.isStudent()
    22 info['action'] = "%s/faculty_index_view" % context.absolute_url()
     22info['action'] = "%s/faculty_view" % context.absolute_url()
    2323info['choosen_ids'] = request.get('ids',[])
    2424info['doc'] = context.getContent()
Note: See TracChangeset for help on using the changeset viewer.