Skip to content

Commit

Permalink
Merge pull request #6169 from DavidKang/fix-table
Browse files Browse the repository at this point in the history
Fix staging_project table content
  • Loading branch information
Moisés Déniz Alemán committed Nov 5, 2018
2 parents 3bd5ebc + 25c0ab8 commit cfdd176
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions src/api/app/views/webui2/webui/staging_workflows/show.html.haml
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,20 @@
%h3= @pagetitle
%table.table.table-striped.table-bordered.table-sm.dt-responsive.w-100#files-table
%thead
%tr.text-center
%th Project
%th Requests
%th Problems
%tr.text-center
%th Project
%th Requests
%th Problems

%tbody
- @staging_workflow.staging_projects.each do |staging_project|
%tr
%td
= render partial: 'overall_state', locals: { project: staging_project }
%td
= render partial: 'packages_list', locals: { project: staging_project }
%td.broken-packages
= render partial: 'problems', locals: { project: staging_project }
- @staging_workflow.staging_projects.each do |staging_project|
%tr
%td
= render partial: 'overall_state', locals: { project: staging_project }
%td
= render partial: 'packages_list', locals: { project: staging_project }
%td.broken-packages
= render partial: 'problems', locals: { project: staging_project }
.col-xl-2
= render partial: 'legend'
= render partial: 'infos'

0 comments on commit cfdd176

Please sign in to comment.