diff options
author | Guido Diepen <site-github@guidodiepen.nl> | 2018-07-05 19:48:18 +0200 |
---|---|---|
committer | Jonas Franz <info@jonasfranz.software> | 2018-07-05 19:48:18 +0200 |
commit | 7c943b1cad5a75d4962eaf58291a8244e39534ab (patch) | |
tree | 279e661f57e86c20dd0841d182c0e41345d0b7f1 /templates | |
parent | 5bc8782d33d81681ba18a4ec262a51d856e9975f (diff) | |
download | gitea-7c943b1cad5a75d4962eaf58291a8244e39534ab.tar.gz gitea-7c943b1cad5a75d4962eaf58291a8244e39534ab.zip |
Implemented hover text showing user FullName (#4261)
For each action that is displayed in either the public activity overview
of a user, or in the dashboard overview, the link to the username is now
extended with a title attribute to show the FullName as hover text
Signed-off-by: Guido Diepen <site-github@guidodiepen.nl>
Diffstat (limited to 'templates')
-rw-r--r-- | templates/user/dashboard/feeds.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/user/dashboard/feeds.tmpl b/templates/user/dashboard/feeds.tmpl index bdd6c34820..d9082a0f12 100644 --- a/templates/user/dashboard/feeds.tmpl +++ b/templates/user/dashboard/feeds.tmpl @@ -7,7 +7,7 @@ <div class="ui thirteen wide column"> <div class="{{if eq .GetOpType 5}}push news{{end}}"> <p> - <a href="{{AppSubUrl}}/{{.GetActUserName}}">{{.ShortActUserName}}</a> + <a href="{{AppSubUrl}}/{{.GetActUserName}}" title="{{.GetActFullName}}">{{.ShortActUserName}}</a> {{if eq .GetOpType 1}} {{$.i18n.Tr "action.create_repo" .GetRepoLink .ShortRepoPath | Str2html}} {{else if eq .GetOpType 2}} |