updated season league view page

This commit is contained in:
2026-02-14 21:08:00 +11:00
parent 4a2396bca8
commit 61890ae20b
23 changed files with 791 additions and 302 deletions

View File

@@ -77,6 +77,10 @@ func GetList[T any](tx bun.Tx) *listgetter[T] {
return l
}
func (l *listgetter[T]) String() string {
return l.q.String()
}
func (l *listgetter[T]) Join(join string, args ...any) *listgetter[T] {
l.q = l.q.Join(join, args...)
return l