diff options
author | Unknown <joe2010xtmf@163.com> | 2014-03-16 12:07:35 -0400 |
---|---|---|
committer | Unknown <joe2010xtmf@163.com> | 2014-03-16 12:07:35 -0400 |
commit | ec65be79f0337b11c01121eae9fd54fe49bee830 (patch) | |
tree | f623dbf19d69cef9a2938a0f465f1159d59a5a49 /templates/user/profile.tmpl | |
parent | c97a435d73eca1d2365a66469252d685e942501b (diff) | |
download | gitea-ec65be79f0337b11c01121eae9fd54fe49bee830.tar.gz gitea-ec65be79f0337b11c01121eae9fd54fe49bee830.zip |
Fix commit feed ui
Diffstat (limited to 'templates/user/profile.tmpl')
-rw-r--r-- | templates/user/profile.tmpl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/templates/user/profile.tmpl b/templates/user/profile.tmpl index 84d3b13c92..24ae76fef8 100644 --- a/templates/user/profile.tmpl +++ b/templates/user/profile.tmpl @@ -32,10 +32,11 @@ {{if eq .TabName "activity"}} <div class="tab-pane active"> <ul class="list-unstyled activity-list"> + {{$avatarLink := .Owner.AvatarLink}} {{range .Feeds}} <li> <i class="icon fa fa-{{ActionIcon .OpType}}"></i> - <div class="info"><span class="meta">{{TimeSince .Created}}</span><br>{{ActionDesc . | str2html}}</div> + <div class="info"><span class="meta">{{TimeSince .Created}}</span><br>{{ActionDesc . $avatarLink | str2html}}</div> <span class="clearfix"></span> </li> {{else}} |