diff options
author | FuXiaoHei <fuxiaohei@hexiaz.com> | 2014-03-25 23:00:26 +0800 |
---|---|---|
committer | FuXiaoHei <fuxiaohei@hexiaz.com> | 2014-03-25 23:00:26 +0800 |
commit | 23d103c72163cdb4ea65c9756edf22c597060a7e (patch) | |
tree | d35d74557aab2c2219dd5db108358a07356f114c /routers | |
parent | 124c4d72bfd911b7966cfd513d469b3aff8ac086 (diff) | |
download | gitea-23d103c72163cdb4ea65c9756edf22c597060a7e.tar.gz gitea-23d103c72163cdb4ea65c9756edf22c597060a7e.zip |
issue list in user
Diffstat (limited to 'routers')
-rw-r--r-- | routers/user/user.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/routers/user/user.go b/routers/user/user.go index a0321f187b..d3ef96211e 100644 --- a/routers/user/user.go +++ b/routers/user/user.go @@ -285,7 +285,8 @@ func Feeds(ctx *middleware.Context, form auth.FeedsForm) { } func Issues(ctx *middleware.Context) { - ctx.HTML(200, "user/issues") + ctx.Data["Title"] = "Your Issues" + ctx.HTML(200, "issue/user") } func Pulls(ctx *middleware.Context) { |