Changeset 17498 for main/waeup.uniben/trunk/src
- Timestamp:
- 20 Jul 2023, 13:39:23 (16 months ago)
- Location:
- main/waeup.uniben/trunk/src/waeup/uniben
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.uniben/trunk/src/waeup/uniben/locales/en/LC_MESSAGES/waeup.kofa.po
r17457 r17498 117 117 "and (4) more as contained in the benefit package. " 118 118 "Subscribe to TISHIP - pay your charges now!!" 119 120 msgid "Term" 121 msgstr "Sem." -
main/waeup.uniben/trunk/src/waeup/uniben/students/utils.py
r17457 r17498 650 650 else: 651 651 f_text = formatted_text('%s' % cgpa) 652 if not transcript_data[1]: 653 f_text = formatted_text('No results yet!') 652 654 f_text = Paragraph(f_text, ENTRY1_STYLE) 653 655 contextdata.append([f_label,f_text]) … … 656 658 data.append(contexttable) 657 659 658 transcripttables = render_transcript_data( 659 view, tableheader, levels_data, lang=portal_language) 660 data.extend(transcripttables) 660 if transcript_data[1]: 661 transcripttables = render_transcript_data( 662 view, tableheader, levels_data, lang=portal_language) 663 data.extend(transcripttables) 661 664 662 665 # Insert signatures
Note: See TracChangeset for help on using the changeset viewer.