diff options
author | Unknwon <u@gogs.io> | 2015-08-13 16:07:11 +0800 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2015-08-13 16:07:11 +0800 |
commit | 133b19d0c5587b7c6d5d9e8057f81bc45a246972 (patch) | |
tree | 1cd0e19599d5f9288fb1b2cbf5bf8f48fdf16fd8 /modules/base/template.go | |
parent | d7d72b9e3cc0e536d213d6501244544de8020661 (diff) | |
download | gitea-133b19d0c5587b7c6d5d9e8057f81bc45a246972.tar.gz gitea-133b19d0c5587b7c6d5d9e8057f81bc45a246972.zip |
finish view comments on issue page
Diffstat (limited to 'modules/base/template.go')
-rw-r--r-- | modules/base/template.go | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/modules/base/template.go b/modules/base/template.go index 0d68254561..7f57538863 100644 --- a/modules/base/template.go +++ b/modules/base/template.go @@ -131,12 +131,13 @@ var TemplateFuncs template.FuncMap = map[string]interface{}{ "LoadTimes": func(startTime time.Time) string { return fmt.Sprint(time.Since(startTime).Nanoseconds()/1e6) + "ms" }, - "AvatarLink": AvatarLink, - "Safe": Safe, - "Str2html": Str2html, - "TimeSince": TimeSince, - "FileSize": FileSize, - "Subtract": Subtract, + "AvatarLink": AvatarLink, + "Safe": Safe, + "Str2html": Str2html, + "TimeSince": TimeSince, + "RawTimeSince": RawTimeSince, + "FileSize": FileSize, + "Subtract": Subtract, "Add": func(a, b int) int { return a + b }, |