From eec0f5da873a5730e71560330277bf83958a6146 Mon Sep 17 00:00:00 2001 From: Grzegorz Bizon Date: Fri, 12 Aug 2016 14:32:46 +0200 Subject: Extract pipeline badges to the separate view partial --- .../projects/pipelines_settings/_badges.html.haml | 28 +++++++++++++++++++++ .../projects/pipelines_settings/show.html.haml | 29 +--------------------- 2 files changed, 29 insertions(+), 28 deletions(-) create mode 100644 app/views/projects/pipelines_settings/_badges.html.haml (limited to 'app') diff --git a/app/views/projects/pipelines_settings/_badges.html.haml b/app/views/projects/pipelines_settings/_badges.html.haml new file mode 100644 index 00000000000..436ae4c237a --- /dev/null +++ b/app/views/projects/pipelines_settings/_badges.html.haml @@ -0,0 +1,28 @@ +- badges.each do |badge| + .row{ class: badge.title.gsub(' ', '-') } + .col-lg-3.profile-settings-sidebar + %h4.prepend-top-0 + = badge.title.capitalize + .col-lg-9 + .prepend-top-10 + .panel.panel-default + .panel-heading + %b + = badge.title.capitalize + · + = badge.to_html + .pull-right + = render 'shared/ref_switcher', destination: 'badges', align_right: true + .panel-body + .row + .col-md-2.text-center + Markdown + .col-md-10.code.js-syntax-highlight + = highlight('.md', badge.to_markdown) + .row + %hr + .row + .col-md-2.text-center + HTML + .col-md-10.code.js-syntax-highlight + = highlight('.html', badge.to_html) diff --git a/app/views/projects/pipelines_settings/show.html.haml b/app/views/projects/pipelines_settings/show.html.haml index 5570dc0481b..3213fe07ef5 100644 --- a/app/views/projects/pipelines_settings/show.html.haml +++ b/app/views/projects/pipelines_settings/show.html.haml @@ -77,31 +77,4 @@ %hr .row.prepend-top-default - - @badges.each do |badge| - .row{ class: badge.title.gsub(' ', '-') } - .col-lg-3.profile-settings-sidebar - %h4.prepend-top-0 - = badge.title.capitalize - .col-lg-9 - .prepend-top-10 - .panel.panel-default - .panel-heading - %b - = badge.title.capitalize - · - = badge.to_html - .pull-right - = render 'shared/ref_switcher', destination: 'badges', align_right: true - .panel-body - .row - .col-md-2.text-center - Markdown - .col-md-10.code.js-syntax-highlight - = highlight('.md', badge.to_markdown) - .row - %hr - .row - .col-md-2.text-center - HTML - .col-md-10.code.js-syntax-highlight - = highlight('.html', badge.to_html) + = render partial: 'badges', object: @badges -- cgit v1.2.1