aboutsummaryrefslogtreecommitdiff
path: root/modules/base/template.go
diff options
context:
space:
mode:
authorslene <vslene@gmail.com>2014-03-19 22:21:03 +0800
committerslene <vslene@gmail.com>2014-03-19 22:21:03 +0800
commit199fdd03360e3c9d1d2fb93fe993e01d115e8312 (patch)
treedee773523e820ae92f3f77ad9b80f7d57d05e07f /modules/base/template.go
parent483cc3136920a70ae1707ec5337d574b288853c3 (diff)
fork render
Diffstat (limited to 'modules/base/template.go')
-rw-r--r--modules/base/template.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/modules/base/template.go b/modules/base/template.go
index db79340e..23d3d277 100644
--- a/modules/base/template.go
+++ b/modules/base/template.go
@@ -6,7 +6,9 @@ package base
import (
"container/list"
+ "fmt"
"html/template"
+ "time"
)
func Str2html(raw string) template.HTML {
@@ -40,6 +42,9 @@ var TemplateFuncs template.FuncMap = map[string]interface{}{
"AppDomain": func() string {
return Domain
},
+ "LoadTimes": func(startTime time.Time) string {
+ return fmt.Sprint(time.Since(startTime).Nanoseconds()/1e6) + "ms"
+ },
"AvatarLink": AvatarLink,
"str2html": Str2html,
"TimeSince": TimeSince,