diff options
author | FuXiaoHei <fuxiaohei@hexiaz.com> | 2014-03-25 22:42:45 +0800 |
---|---|---|
committer | FuXiaoHei <fuxiaohei@hexiaz.com> | 2014-03-25 22:42:45 +0800 |
commit | 124c4d72bfd911b7966cfd513d469b3aff8ac086 (patch) | |
tree | 54a640e6e1b3f4d43cb8e6d630f92861ccf12337 /routers | |
parent | e5d8fe41c4fd8331352c77d8a17d5c035f0787a2 (diff) | |
download | gitea-124c4d72bfd911b7966cfd513d469b3aff8ac086.tar.gz gitea-124c4d72bfd911b7966cfd513d469b3aff8ac086.zip |
issue list in repo
Diffstat (limited to 'routers')
-rw-r--r-- | routers/repo/issue.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/routers/repo/issue.go b/routers/repo/issue.go index d54582a2a0..ab070d724c 100644 --- a/routers/repo/issue.go +++ b/routers/repo/issue.go @@ -35,7 +35,7 @@ func Issues(ctx *middleware.Context, params martini.Params) { params["branchname"] = "master" } ctx.Data["Branchname"] = params["branchname"] - ctx.HTML(200, "repo/issues") + ctx.HTML(200, "issue/repo") } func CreateIssue(ctx *middleware.Context, params martini.Params, form auth.CreateIssueForm) { |