package components import ( "fmt" "github.com/LazyBachelor/LazyPM/internal/models" ) type IssueDetailCardProps struct { Issue models.Issue DisplayOwner string DisplayAssignee string } templ IssueDetailCard(props IssueDetailCardProps) {
{ props.Issue.Description }
{ props.Issue.CreatedAt.Format("Jan 2, 2006") }
{ props.Issue.UpdatedAt.Format("Jan 2, 2006") }
{ props.DisplayOwner }
{ props.DisplayAssignee }