From 35c3ea952a6eb558e69de55fc94d301676feb935 Mon Sep 17 00:00:00 2001 From: David Svantesson Date: Wed, 20 Nov 2019 10:07:09 +0100 Subject: [PATCH] Explore page: Add topic param to pagination (#9077) (#9078) --- routers/home.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/routers/home.go b/routers/home.go index eddff28ee..50e1a2b2a 100644 --- a/routers/home.go +++ b/routers/home.go @@ -132,6 +132,7 @@ func RenderRepoSearch(ctx *context.Context, opts *RepoSearchOptions) { keyword := strings.Trim(ctx.Query("q"), " ") topicOnly := ctx.QueryBool("topic") + ctx.Data["TopicOnly"] = topicOnly repos, count, err = models.SearchRepository(&models.SearchRepoOptions{ Page: page, @@ -155,6 +156,7 @@ func RenderRepoSearch(ctx *context.Context, opts *RepoSearchOptions) { pager := context.NewPagination(int(count), opts.PageSize, page, 5) pager.SetDefaultParams(ctx) + pager.AddParam(ctx, "topic", "TopicOnly") ctx.Data["Page"] = pager ctx.HTML(200, opts.TplName)