10 lines
169 B
Plaintext
10 lines
169 B
Plaintext
package adminview
|
|
|
|
import "git.haelnorr.com/h/oslstats/internal/db"
|
|
|
|
templ DashboardPage(users *db.List[db.User]) {
|
|
@DashboardLayout("users") {
|
|
@UserList(users)
|
|
}
|
|
}
|