diff options
author | Peter Smit <peter@smitmail.eu> | 2015-01-02 12:41:05 +0200 |
---|---|---|
committer | Peter Smit <peter@smitmail.eu> | 2015-01-02 12:41:05 +0200 |
commit | fd70f9ec1b49569424fd15c0f3a212bd716bf24a (patch) | |
tree | f2dbd0abb576c1246a9d94c10b79c04bce1f9f3e /templates/admin/auth | |
parent | 0b56272c130c88fc4441fb1cba04657fe73efc38 (diff) | |
download | gitea-fd70f9ec1b49569424fd15c0f3a212bd716bf24a.tar.gz gitea-fd70f9ec1b49569424fd15c0f3a212bd716bf24a.zip |
Fix #799 by adding a tooltip for all dates in all settings/panels
Diffstat (limited to 'templates/admin/auth')
-rw-r--r-- | templates/admin/auth/list.tmpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/admin/auth/list.tmpl b/templates/admin/auth/list.tmpl index 01b586fb72..aba516b8eb 100644 --- a/templates/admin/auth/list.tmpl +++ b/templates/admin/auth/list.tmpl @@ -34,8 +34,8 @@ <td><a href="{{AppSubUrl}}/admin/auths/{{.Id}}">{{.Name}}</a></td> <td>{{.TypeString}}</td> <td><i class="fa fa{{if .IsActived}}-check{{end}}-square-o"></i></td> - <td>{{DateFormat .Updated "M d, Y"}}</td> - <td>{{DateFormat .Created "M d, Y"}}</td> + <td><span title="{{DateFormat .Updated "r"}}">{{DateFormat .Updated "M d, Y"}}</span></td> + <td><span title="{{DateFormat .Created "r"}}">{{DateFormat .Created "M d, Y"}}</span></td> <td><a href="{{AppSubUrl}}/admin/auths/{{.Id}}"><i class="fa fa-pencil-square-o"></i></a></td> </tr> {{end}} |