2024-09-11 17:31:40 +00:00
|
|
|
package pages
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"github.com/gofiber/fiber/v2"
|
|
|
|
|
"mhtml/h"
|
|
|
|
|
"mhtml/pages/base"
|
|
|
|
|
"mhtml/partials"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func PatientsIndex(ctx *fiber.Ctx) *h.Page {
|
|
|
|
|
return h.NewPage(base.RootPage(
|
|
|
|
|
h.Div(
|
2024-09-11 18:09:55 +00:00
|
|
|
h.Class("flex flex-col p-4 w-full"),
|
2024-09-11 17:31:40 +00:00
|
|
|
h.Div(
|
2024-09-11 18:09:55 +00:00
|
|
|
h.Div(
|
|
|
|
|
h.Class("flex justify-between items-center"),
|
|
|
|
|
h.P("Manage Patients", h.Class("text-lg font-bold")),
|
|
|
|
|
partials.AddPatientButton(),
|
|
|
|
|
),
|
|
|
|
|
h.ViewWithTriggers(partials.PatientList, "load", "patient-added from:body"),
|
|
|
|
|
),
|
2024-09-11 17:31:40 +00:00
|
|
|
),
|
|
|
|
|
))
|
|
|
|
|
}
|