Ignore:
Timestamp:
29 Jul 2019, 09:59:44 (5 years ago)
Author:
Henrik Bettermann
Message:

Change format of attendance sheet.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.kofa/trunk/src/waeup/kofa/students/utils.py

    r15423 r15526  
    10481048        title = " ".join(view.context.title.split())
    10491049        ct = textwrap.fill(title, title_length)
    1050         ft = title
    1051         if len(textwrap.wrap(title, title_length)) > 1:
    1052             ft = textwrap.wrap(title, title_length)[0] + ' ...'
     1050        ft = "" # title
     1051        #if len(textwrap.wrap(title, title_length)) > 1:
     1052        #    ft = textwrap.wrap(title, title_length)[0] + ' ...'
    10531053        doc_title = translate(_('${a} (${b})\nAcademic Session ${d}',
    10541054            mapping = {'a':ct,
     
    10591059        if name == 'coursetickets':
    10601060            doc_title += _('\nCourse Tickets Overview')
    1061         footer_title = translate(_('${a} (${b}) - ${d}',
    1062             mapping = {'a':ft,
    1063                        'b':view.context.code,
     1061        #footer_title = translate(_('${a} (${b}) - ${d}',
     1062        #    mapping = {'a':ft,
     1063        #               'b':view.context.code,
     1064        #               'd':session}))
     1065        footer_title = translate(_('${b} - ${d}',
     1066            mapping = {'b':view.context.code,
    10641067                       'd':session}))
    10651068        author = '%s (%s)' % (view.request.principal.title,
Note: See TracChangeset for help on using the changeset viewer.