diff options
author | Josh Frye <joshfng@gmail.com> | 2016-02-03 16:33:01 -0500 |
---|---|---|
committer | Josh Frye <joshfng@gmail.com> | 2016-02-04 11:40:19 -0500 |
commit | 7522ac0b3cf4a777fda5dce3baa699970e5133a6 (patch) | |
tree | 79055e852a8f3e0d3da01514e352207d3e533cd3 /app/views/explore | |
parent | 87b61db7ed6b782423397626b6ea414c43f24a15 (diff) | |
download | gitlab-ce-7522ac0b3cf4a777fda5dce3baa699970e5133a6.tar.gz |
Paginate + ajax filter dashboard projects
Diffstat (limited to 'app/views/explore')
-rw-r--r-- | app/views/explore/projects/_projects.html.haml | 4 | ||||
-rw-r--r-- | app/views/explore/projects/starred.html.haml | 4 | ||||
-rw-r--r-- | app/views/explore/projects/trending.html.haml | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/app/views/explore/projects/_projects.html.haml b/app/views/explore/projects/_projects.html.haml index 669079e9521..b64a4918761 100644 --- a/app/views/explore/projects/_projects.html.haml +++ b/app/views/explore/projects/_projects.html.haml @@ -1,6 +1,6 @@ -- if projects.any? +- if @projects.any? .public-projects - = render 'shared/projects/list', projects: projects + = render 'shared/projects/list' - else .nothing-here-block No such projects diff --git a/app/views/explore/projects/starred.html.haml b/app/views/explore/projects/starred.html.haml index 16f52f7a530..0bdd0a57fe6 100644 --- a/app/views/explore/projects/starred.html.haml +++ b/app/views/explore/projects/starred.html.haml @@ -7,5 +7,5 @@ = render 'explore/head' = render 'explore/projects/nav' -= render 'projects', projects: @starred_projects -= paginate @starred_projects, theme: 'gitlab' += render 'projects', projects: @projects += paginate @projects, theme: 'gitlab' diff --git a/app/views/explore/projects/trending.html.haml b/app/views/explore/projects/trending.html.haml index adcda810061..ec461755103 100644 --- a/app/views/explore/projects/trending.html.haml +++ b/app/views/explore/projects/trending.html.haml @@ -7,4 +7,4 @@ = render 'explore/head' = render 'explore/projects/nav' -= render 'projects', projects: @trending_projects += render 'projects', projects: @projects |