diff options
author | Unknwon <u@gogs.io> | 2015-07-24 04:50:05 +0800 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2015-07-24 04:50:05 +0800 |
commit | 4447a20f872776123c42d5b8ca987c114fb4b80b (patch) | |
tree | 3692ada9ffe5bbc54d35cb98ea57a95450f8c99d /routers/repo/issue.go | |
parent | 548b95f7b593d80a241c9a1027eda6b4549ca995 (diff) |
UI: issues - finish basic frame
Diffstat (limited to 'routers/repo/issue.go')
-rw-r--r-- | routers/repo/issue.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/routers/repo/issue.go b/routers/repo/issue.go index 6e88f19e..6856824b 100644 --- a/routers/repo/issue.go +++ b/routers/repo/issue.go @@ -41,7 +41,8 @@ var ( ) func Issues(ctx *middleware.Context) { - ctx.Data["Title"] = "Issues" + ctx.Data["Title"] = ctx.Tr("repo.issues") + ctx.Data["PageIsIssueList"] = true ctx.Data["IsRepoToolbarIssues"] = true ctx.Data["IsRepoToolbarIssuesList"] = true |