Compare commits

...

2 Commits

2 changed files with 10 additions and 2 deletions

View File

@ -37,6 +37,12 @@ func getCredentials() (string, string, error) {
return strings.TrimSpace(user), strings.TrimSpace(pass), nil return strings.TrimSpace(user), strings.TrimSpace(pass), nil
} }
func reverseOrder(bs *[]types.Briefing) {
for i, j := 0, len(*bs)-1; i < j; i, j = i+1, j-1 {
(*bs)[i], (*bs)[j] = (*bs)[j], (*bs)[i]
}
}
func Open(dbName string) (*DB, error) { func Open(dbName string) (*DB, error) {
var err error var err error
db := new(DB) db := new(DB)
@ -108,6 +114,7 @@ func (db *DB) ReadAll() (*[]types.Briefing, error) {
bs = append(bs, *b) bs = append(bs, *b)
} }
reverseOrder(&bs)
return &bs, nil return &bs, nil
} }
@ -145,5 +152,6 @@ func (db *DB) ReadByName(name string) (*[]types.Briefing, error) {
bs = append(bs, *b) bs = append(bs, *b)
} }
reverseOrder(&bs)
return &bs, nil return &bs, nil
} }

View File

@ -32,12 +32,12 @@
<table> <table>
<thead> <thead>
<tr> <tr>
<th colspan="2">Name Unterweiser</th> <th colspan="2">Unterweiser</th>
<th>Datum</th> <th>Datum</th>
<th>Uhrzeit</th> <th>Uhrzeit</th>
<th>Stand</th> <th>Stand</th>
<th>Ort</th> <th>Ort</th>
<th colspan="2">Name Teilnehmer</th> <th colspan="2">Teilnehmer</th>
<th>Firma</th> <th>Firma</th>
</tr> </tr>
</thead> </thead>