From f423279eb6e523702d4332b7d0e58b1078f6a69b Mon Sep 17 00:00:00 2001 From: HanseGucker <joniweth@gmx.de> Date: Sat, 27 Apr 2019 15:45:03 +0200 Subject: [PATCH] - Show teacher, subject and room in PDF by template files - Bug fix in selection of date for the second PDF - Show logo again in PDF --- schoolapps/timetable/pdf.py | 7 ++++--- .../templates/timetable/latex/room.tex | 13 +++++++++++++ .../templates/timetable/latex/subject.tex | 12 ++++++++++++ .../timetable/latex/substitutions.tex | 18 ++++++------------ .../templates/timetable/latex/teacher.tex | 11 +++++++++++ schoolapps/timetable/views.py | 2 +- 6 files changed, 47 insertions(+), 16 deletions(-) create mode 100644 schoolapps/timetable/templates/timetable/latex/room.tex create mode 100644 schoolapps/timetable/templates/timetable/latex/subject.tex create mode 100644 schoolapps/timetable/templates/timetable/latex/teacher.tex diff --git a/schoolapps/timetable/pdf.py b/schoolapps/timetable/pdf.py index 4eeaf655c..62e4a98c5 100644 --- a/schoolapps/timetable/pdf.py +++ b/schoolapps/timetable/pdf.py @@ -10,7 +10,7 @@ from schoolapps.settings import BASE_DIR # LaTeX constants from untisconnect.sub import get_header_information -DIR = os.path.join(BASE_DIR, "static", "common", "logo.png") +LOGO_FILENAME = os.path.join(BASE_DIR, "static", "common", "logo.png") TEX_HEADER_1 = """\\documentclass[11pt]{article} \\usepackage[ngerman]{babel} \\usepackage[sfdefault]{cabin} @@ -58,7 +58,7 @@ TEX_HEADER_2 = """}} \\rfoot{\\small Umsetzung: © 2018--2019 by Computer-AG} \\begin{document}""" -TEX_HEADER = TEX_HEADER_1 + DIR + TEX_HEADER_2 +TEX_HEADER = TEX_HEADER_1 + LOGO_FILENAME + TEX_HEADER_2 TEX_FOOTER = '\end{document}' @@ -205,6 +205,7 @@ def generate_class_tex(subs, date, header_info): context = { "subs": subs, "date": date, - "header_info": header_info + "header_info": header_info, + "LOGO_FILENAME": LOGO_FILENAME } return render_to_string("timetable/latex/substitutions.tex", context) diff --git a/schoolapps/timetable/templates/timetable/latex/room.tex b/schoolapps/timetable/templates/timetable/latex/room.tex new file mode 100644 index 000000000..917f43e79 --- /dev/null +++ b/schoolapps/timetable/templates/timetable/latex/room.tex @@ -0,0 +1,13 @@ +{% if sub.sub.type == 3 %} +{{ sub.sub.corridor.name }} +{% elif sub.sub.type == 1 or sub.sub.type == 2 %} +{% elif sub.sub.roow_new and sub.sub.room_old %} +\sout{ {{ sub.sub.room_old.shortcode }} } +$\rightarrow$ +\textbf{ {{ sub.sub.room_new.shortcode }} } +{% elif sub.sub.room_new and not sub.sub.room_old %} +{{ sub.sub.room_new.shortcode }} +{% elif not sub.sub.room_new and not sub.sub.room_old %} +{% else %} +{{ sub.sub.room_old.shortcode }} +{% endif %} \ No newline at end of file diff --git a/schoolapps/timetable/templates/timetable/latex/subject.tex b/schoolapps/timetable/templates/timetable/latex/subject.tex new file mode 100644 index 000000000..0a2cca45c --- /dev/null +++ b/schoolapps/timetable/templates/timetable/latex/subject.tex @@ -0,0 +1,12 @@ +{% if sub.sub.type == 3 %} +\textbf {Aufsicht } +{% elif not sub.sub.subject_new and not sub.sub.subject_old %} +{% elif sub.sub.type == 1 or sub.sub.type == 2 %} +\sout { {{ sub.sub.subject_old.shortcode }} } +{% elif sub.sub.subject_new and sub.sub.subject_old %} +\sout { {{ sub.sub.subject_old.shortcode }} } $\rightarrow$ \textbf { {{ sub.sub.subject_new.shortcode }} } +{% elif sub.sub.subject_new and not sub.sub.subject_old %} +\textbf { {{ sub.sub.subject_new.shortcode }} } +{% else %} +\textbf { {{ sub.sub.subject_old.shortcode }} } +{% endif %} \ No newline at end of file diff --git a/schoolapps/timetable/templates/timetable/latex/substitutions.tex b/schoolapps/timetable/templates/timetable/latex/substitutions.tex index 6e4246cda..051e55789 100644 --- a/schoolapps/timetable/templates/timetable/latex/substitutions.tex +++ b/schoolapps/timetable/templates/timetable/latex/substitutions.tex @@ -40,7 +40,7 @@ enlarge bottom by=3pt,coltext=white} \pagestyle{fancy} % Left header: logo -%\lhead{\includegraphics[width=5cm]{}} +\lhead{\includegraphics[width=5cm]{% templatetag openbrace %}{{LOGO_FILENAME}}{% templatetag closebrace %}} % Define footer \lfoot{Katharineum zu Lübeck} @@ -114,23 +114,17 @@ Stand: {% now "j. F Y H:i" %}\\ \color{ {{c}} } {{ sub.lesson }} & - \color{ {{c}} } - lehrer & + \color{ {{c}} } {% include "timetable/latex/teacher.tex" %} & - \color{ {{c}} } - fach & + \color{ {{c}} } {% include "timetable/latex/subject.tex" %} & - \color{ {{c}} } - raum & + \color{ {{c}} } {% include "timetable/latex/room.tex" %} & - {# Display badge (for cancellations) #} + {# Display badge (for cancellations) #} {# Display notice and new line #} {% if sub.badge %} \large\badge{ {{ sub.badge }} } - {% endif %} + {% endif %} \color{ {{c}} } \Large\textit{ {{sub.text|default:""}} } \\ - {# Display notice and new line #} - \color{ {{c}} } - \Large\textit{ {{sub.text|default:""}} } \\ {% endwith %} {% endfor %} \end{longtable} diff --git a/schoolapps/timetable/templates/timetable/latex/teacher.tex b/schoolapps/timetable/templates/timetable/latex/teacher.tex new file mode 100644 index 000000000..f4a4018d8 --- /dev/null +++ b/schoolapps/timetable/templates/timetable/latex/teacher.tex @@ -0,0 +1,11 @@ +{% if sub.sub.type == 1 %} +\sout{ {{ sub.sub.teacher_old.shortcode }} } +{% elif sub.sub.teacher_new and sub.sub.teacher_old %} +\sout{ {{ sub.sub.teacher_old.shortcode }} } +$\rightarrow$ +\textbf{ {{ sub.sub.teacher_new.shortcode }} } +{% elif sub.sub.teacher_new and not sub.sub.teacher_old %} +\textbf{ {{ sub.sub.teacher_new.shortcode }} } +{% elif sub.sub.teacher_old %} +\textbf{ {{ sub.sub.teacher_old.shortcode }} } +{% endif %} \ No newline at end of file diff --git a/schoolapps/timetable/views.py b/schoolapps/timetable/views.py index 971456b71..73141f408 100755 --- a/schoolapps/timetable/views.py +++ b/schoolapps/timetable/views.py @@ -197,7 +197,7 @@ def sub_pdf(request): today = timezone.datetime.now() first_day = get_next_weekday(today) - second_day = get_next_weekday(today + datetime.timedelta(days=1)) + second_day = get_next_weekday(first_day + datetime.timedelta(days=1)) # Get subs and generate table for i, date in enumerate([first_day, second_day]): -- GitLab