feat: Adds ability to toggle an employee's active status (#3)

Reviewed-on: #3
This commit is contained in:
2025-01-28 17:27:00 +00:00
parent 027c7037a6
commit a76d523541
7 changed files with 54 additions and 5 deletions

View File

@@ -0,0 +1,14 @@
import Elementary
import ElementaryHTMX
import SharedModels
struct PurchaseOrderFilter: HTML, Sendable {
var content: some HTML {
form(
.id("filter-form")
) {
input(.type(.text), .name("id"), .placeholder("Filter: (12345)"), .required)
}
}
}