diff options
author | Josh Frye <joshfng@gmail.com> | 2016-02-24 11:08:00 -0500 |
---|---|---|
committer | Josh Frye <joshfng@gmail.com> | 2016-02-29 08:24:07 -0500 |
commit | cc9f93f9d26a18a7e867384e1e3cf34a3197ba5c (patch) | |
tree | 4ad72747512c4e29cb231cf9ace790f4ab5eb8b0 /app/views/shared/projects | |
parent | cd391b66e9d480c3143b63d32f893c6a1015f04e (diff) | |
download | gitlab-ce-cc9f93f9d26a18a7e867384e1e3cf34a3197ba5c.tar.gz |
Add routes and actions for dynamic tab loading
Diffstat (limited to 'app/views/shared/projects')
-rw-r--r-- | app/views/shared/projects/_list.html.haml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/views/shared/projects/_list.html.haml b/app/views/shared/projects/_list.html.haml index e75af50a537..b5c0c7ed57c 100644 --- a/app/views/shared/projects/_list.html.haml +++ b/app/views/shared/projects/_list.html.haml @@ -6,6 +6,7 @@ - ci = false unless local_assigns[:ci] == true - skip_namespace = false unless local_assigns[:skip_namespace] == true - show_last_commit_as_description = false unless local_assigns[:show_last_commit_as_description] == true +- remote = false unless local_assigns[:remote] == true %ul.projects-list.content-list - if projects.any? @@ -21,7 +22,7 @@ #{projects_limit} of #{pluralize(projects.count, 'project')} displayed. = link_to '#', class: 'js-expand' do Show all - = paginate projects, theme: "gitlab" if projects.respond_to? :total_pages + = paginate(projects, remote: remote, theme: "gitlab") if projects.respond_to? :total_pages - else %h3 No projects found |