`))
if len(tmpl_topics_vars.NoticeList) != 0 {
for _, item := range tmpl_topics_vars.NoticeList {
w.Write([]byte(`
`))
if len(tmpl_topics_vars.ItemList) != 0 {
for _, item := range tmpl_topics_vars.ItemList {
w.Write([]byte(`
` + item.(TopicUser).Title + ` `))
if item.(TopicUser).Is_Closed {
w.Write([]byte(`
closed
`))
} else {
w.Write([]byte(`
open`))
}
w.Write([]byte(`
Status
`))
}
} else {
w.Write([]byte(`
There aren't any topics yet.
`))
}
w.Write([]byte(`