feat: Begins user profile, adds database model, need to add views / forms.
This commit is contained in:
@@ -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")) {
|
||||
|
||||
Reference in New Issue
Block a user