Files
LazyPM/pkg/web/routes/index.templ
Ine Maria Nilssen Aanonsen d1ef4e9491 READ ISSUES - WEB
2026-02-23 13:51:42 +01:00

32 lines
734 B
Plaintext

package routes
import "github.com/LazyBachelor/LazyPM/pkg/web/components"
type IndexProps struct {
IssueTable components.IssueTableProps
SearchQuery string
}
templ IndexContent(props IndexProps) {
<div class="flex flex-col justify-center items-center gap-6 m-5">
<h1 class="text-2xl text-primary">Create New Issue</h1>
@components.IssueForm(
components.IssueFormProps{
Action: "/issues",
Class: "mb-4",
Title: "",
Description: "",
Status: "open",
Priority: 0,
IssueType: "task",
})
@components.IssueTable(props.IssueTable)
</div>
}
templ Index(props IndexProps) {
@BaseLayout(BaseLayoutProps{SearchQuery: props.SearchQuery}) {
@IndexContent(props)
}
}