putting web from main into this branch
This commit is contained in:
26
pkg/web/routes/index.templ
Normal file
26
pkg/web/routes/index.templ
Normal file
@@ -0,0 +1,26 @@
|
||||
package routes
|
||||
|
||||
import "github.com/LazyBachelor/LazyPM/pkg/web/components"
|
||||
|
||||
type IndexProps struct {
|
||||
IssueTable components.IssueTableProps
|
||||
}
|
||||
|
||||
templ Index(props IndexProps) {
|
||||
@BaseLayout() {
|
||||
<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>
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user