refactor: change template generation from go-elem to templ and clean up the repository
This commit is contained in:
parent
f6b6f81826
commit
a3dc4eddfa
19 changed files with 842 additions and 874 deletions
16
models/bewertung.go
Normal file
16
models/bewertung.go
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
package models
|
||||
|
||||
type Bewertung struct {
|
||||
Vorname string
|
||||
Nachname string
|
||||
ID int
|
||||
HvPunkte float64
|
||||
HvProzent float64
|
||||
HvNote int
|
||||
LvPunkte float64
|
||||
LvProzent float64
|
||||
LvNote int
|
||||
GesamtProzent float64
|
||||
GesamtNote int
|
||||
Gewertet bool
|
||||
}
|
||||
8
models/maxpunkte.go
Normal file
8
models/maxpunkte.go
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
package models
|
||||
|
||||
type MaxPunkte struct {
|
||||
HvMax float64
|
||||
LvMax float64
|
||||
HvGewichtung float64
|
||||
LvGewichtung float64
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue