feat: add option to make supervisor signature optional #111

Merged
servostar merged 2 commits from feat/make-supervisor-signature-optional into develop 2024-11-25 15:56:50 +00:00
2 changed files with 19 additions and 16 deletions

View File

@ -24,6 +24,7 @@
name: "dualen Hochschule Baden-Württemberg", name: "dualen Hochschule Baden-Württemberg",
campus: "Eppelheim" campus: "Eppelheim"
), ),
supervisor-signature: false,
authors: ( authors: (
( (
name: "Sven Vogel", name: "Sven Vogel",

View File

@ -147,22 +147,24 @@
#context panic("no translation for language: ", text.lang) #context panic("no translation for language: ", text.lang)
] ]
#align( #if config.supervisor-signature {
bottom, align(
grid( bottom,
// set width of columns grid(
// we need two, so make both half the page width // set width of columns
columns: (60%, 40%), // we need two, so make both half the page width
align(left, if text.lang == "de" [ columns: (60%, 40%),
Unterschrift des betrieblichen Betreuers align(left, if text.lang == "de" [
] else if text.lang == "en" [ Unterschrift des betrieblichen Betreuers
Signature of the company supervisor ] else if text.lang == "en" [
] else [ Signature of the company supervisor
#context panic("no translation for language: ", text.lang) ] else [
] #context panic("no translation for language: ", text.lang)
), ]
align(right, {line(length: 6cm)})), ),
) align(right, {line(length: 6cm)})),
)
}
#counter(page).update(0) #counter(page).update(0)
] ]