summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexey Makhov <amakhov@avito.ru>2015-11-12 23:09:48 +0300
committerAlexey Makhov <amakhov@avito.ru>2015-11-12 23:09:48 +0300
commit588a0db21869828c4ba1006855ed6454ca878068 (patch)
treebcb6d2688874d7046f065f09847aaac96b57eb50
parentd1e28ac013c2f562939025e6a031671a5a70dd52 (diff)
downloadgitea-588a0db21869828c4ba1006855ed6454ca878068.tar.gz
gitea-588a0db21869828c4ba1006855ed6454ca878068.zip
#1854 issue title at dashboard
-rw-r--r--models/action.go7
-rw-r--r--templates/user/dashboard/feeds.tmpl3
2 files changed, 9 insertions, 1 deletions
diff --git a/models/action.go b/models/action.go
index e94bb9441b..11a2de0339 100644
--- a/models/action.go
+++ b/models/action.go
@@ -10,6 +10,7 @@ import (
"fmt"
"path"
"regexp"
+ "strconv"
"strings"
"time"
"unicode"
@@ -136,6 +137,12 @@ func (a Action) GetIssueInfos() []string {
return strings.SplitN(a.Content, "|", 2)
}
+func (a Action) GetIssueTitle() string {
+ issueID, _ := strconv.Atoi(strings.SplitN(a.Content, "|", 2)[0])
+ issue, _ := GetIssueByID(int64(issueID))
+ return issue.Name
+}
+
func newRepoAction(e Engine, u *User, repo *Repository) (err error) {
if err = notifyWatchers(e, &Action{
ActUserID: u.Id,
diff --git a/templates/user/dashboard/feeds.tmpl b/templates/user/dashboard/feeds.tmpl
index a79ff5531b..dcd856f6d7 100644
--- a/templates/user/dashboard/feeds.tmpl
+++ b/templates/user/dashboard/feeds.tmpl
@@ -24,7 +24,7 @@
{{$.i18n.Tr "action.push_tag" .GetRepoLink .GetBranch .GetRepoPath | Str2html}}
{{else if eq .GetOpType 10}}
{{ $index := index .GetIssueInfos 0}}
- {{$.i18n.Tr "action.comment_issue" .GetRepoLink $index .GetRepoPath | Str2html}}
+ {{$.i18n.Tr "action.comment_issue" .GetRepoLink $index .GetRepoPath | Str2html}} – {{.GetIssueTitle}}
{{else if eq .GetOpType 11}}
{{ $index := index .GetIssueInfos 0}}
{{$.i18n.Tr "action.merge_pull_request" .GetRepoLink $index .GetRepoPath | Str2html}}
@@ -48,6 +48,7 @@
{{else if eq .GetOpType 7}}
<p class="news-content comment-news">{{index .GetIssueInfos 1}}</p>
{{else if eq .GetOpType 10}}
+ <p class="news-content comment-news">{{.GetIssueTitle}}</p>
<p class="news-content comment-news">{{index .GetIssueInfos 1}}</p>
{{else if eq .GetOpType 11}}
<p class="news-content comment-news">{{index .GetIssueInfos 1}}</p>