package views import ( "fmt" "gitrepo.ru/neonxp/gorum/models" ) templ Topics(topics []*models.Topic) { @Layout() { for _, n := range topics { @Topic(n) }
Тема Тем/Ответов Дата Автор
} } templ Topic(n *models.Topic) { { n.Topic } // { strconv.Itoa(len(n.Children)) } { n.CreatedAt.Format("15:04 02.01.2006") } if n.Author != nil { { n.Author.Username } } }