summaryrefslogtreecommitdiff
path: root/app/views/ci/projects/gitlab.html.haml
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/ci/projects/gitlab.html.haml')
-rw-r--r--app/views/ci/projects/gitlab.html.haml35
1 files changed, 35 insertions, 0 deletions
diff --git a/app/views/ci/projects/gitlab.html.haml b/app/views/ci/projects/gitlab.html.haml
new file mode 100644
index 00000000000..dbc0ea0880f
--- /dev/null
+++ b/app/views/ci/projects/gitlab.html.haml
@@ -0,0 +1,35 @@
+- if @offset == 0
+ .clearfix.light
+ .pull-left.fetch-status
+ Fetched from GitLab (#{link_to GitlabCi.config.gitlab_server.url, GitlabCi.config.gitlab_server.url, no_turbolink})
+ - if params[:search].present?
+ by keyword: "#{params[:search]}",
+ #{time_ago_in_words(current_user.sync_at)} ago.
+ = link_to gitlab_ci_projects_path(reset_cache: true, search: params[:search]), class: 'sync-now btn btn-sm btn-default reset-cache' do
+ %i.fa-refresh
+ Sync now
+ %br
+
+ .pull-right
+ #{@total_count} projects, #{@projects.size} of them added to CI
+ %br
+
+ %table.table.projects-table.content-list
+ %thead
+ %tr
+ %th Project Name
+ %th Last commit
+ %th Access
+ %th Commits
+
+ = render @projects
+
+ = render "gl_projects"
+
+ %p.text-center.hide.loading
+ %i.fa-refresh.fa-spin
+
+- else
+ = render @projects
+
+ = render "gl_projects"