diff options
-rw-r--r-- | web/templates/list/show.tmpl | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/web/templates/list/show.tmpl b/web/templates/list/show.tmpl index 40b01ef..7dd4dfc 100644 --- a/web/templates/list/show.tmpl +++ b/web/templates/list/show.tmpl @@ -16,10 +16,12 @@ </tr> {{range .MessageData}} - <tr> - <td><a href="threads/{{.CombinedDate}}/">{{.CombinedDate}}</a></td> - <td>{{.MessageCount}}</td> - </tr> + {{if ne .CombinedDate ""}} + <tr> + <td><a href="threads/{{.CombinedDate}}/">{{.CombinedDate}}</a></td> + <td>{{.MessageCount}}</td> + </tr> + {{end}} {{end}} </table> |