diff --git a/frontend/bindata/templates/bgpmap b/frontend/bindata/templates/bgpmap.tpl similarity index 100% rename from frontend/bindata/templates/bgpmap rename to frontend/bindata/templates/bgpmap.tpl diff --git a/frontend/bindata/templates/bird b/frontend/bindata/templates/bird.tpl similarity index 100% rename from frontend/bindata/templates/bird rename to frontend/bindata/templates/bird.tpl diff --git a/frontend/bindata/templates/page b/frontend/bindata/templates/page.tpl similarity index 100% rename from frontend/bindata/templates/page rename to frontend/bindata/templates/page.tpl diff --git a/frontend/bindata/templates/summary b/frontend/bindata/templates/summary.tpl similarity index 100% rename from frontend/bindata/templates/summary rename to frontend/bindata/templates/summary.tpl diff --git a/frontend/bindata/templates/whois b/frontend/bindata/templates/whois.tpl similarity index 100% rename from frontend/bindata/templates/whois rename to frontend/bindata/templates/whois.tpl diff --git a/frontend/template.go b/frontend/template.go index 0c041dc..89b8ce9 100644 --- a/frontend/template.go +++ b/frontend/template.go @@ -1,6 +1,7 @@ package main import ( + "strings" "text/template" ) @@ -42,6 +43,16 @@ type SummaryRowData struct { Info string } +// utility functions to allow filtering of results in the template + +func (r SummaryRowData) NameHasPrefix(prefix string) bool { + return strings.HasPrefix(r.Name, prefix) +} + +func (r SummaryRowData) NameContains(prefix string) bool { + return strings.Contains(r.Name, prefix) +} + type TemplateSummary struct { ServerName string Raw string @@ -94,7 +105,7 @@ func ImportTemplates() { for _, tmpl := range requiredTemplates { // extract the template definition from the bindata - def := MustAssetString("templates/" + tmpl) + def := MustAssetString("templates/" + tmpl + ".tpl") // and add it to the template library template, err := template.New(tmpl).Parse(def)