feat: Begins user profile, adds database model, need to add views / forms.

This commit is contained in:
2026-01-12 13:33:53 -05:00
parent 6416b29627
commit 894bd561ff
16 changed files with 1439 additions and 3411 deletions

View File

@@ -121,6 +121,7 @@ struct RoomsView: HTML, Sendable {
}
public struct RoomRow: HTML, Sendable {
let room: Room
let shr: Double
@@ -137,7 +138,7 @@ struct RoomsView: HTML, Sendable {
}
public var body: some HTML {
tr(.id("roomRow_\(room.name)")) {
tr(.id("roomRow_\(room.id.idString)")) {
td { room.name }
td {
div(.class("flex justify-center")) {