package templates // this file includes the basic pages, that have no further complexity, // like the login and settings page, the more complex pages have their own files import "arbeitszeitmessung/models" import "arbeitszeitmessung/helper" templ BasePage() {
Nutzername: { user.Vorname } { user.Name }
Personalnummer: { user.PersonalNummer }
Frühester Arbeitsbegin: { user.ArbeitMinStart.Format("15:06") } Uhr
Spätester Arbeitsende: { user.ArbeitMaxEnde.Format("15:06") } Uhr
Arbeitszeit pro Tag: { helper.FormatDuration(user.ArbeitszeitProTag()) }
Arbeitszeit pro Woche: { helper.FormatDuration(user.ArbeitszeitProWoche()) }
Nutzer von Weboberfläche abmelden.