Commit 26afde94 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Merge pull request #2250 from jouve/fix_missing_tr_in_thead

add missing mandatory tr in thead
parents 45e208cb c76764b7
...@@ -12,13 +12,14 @@ ...@@ -12,13 +12,14 @@
%table %table
%thead %thead
%th %tr
Name %th
%i.icon-sort-down Name
%th Path %i.icon-sort-down
%th Projects %th Path
%th Owner %th Projects
%th.cred Danger Zone! %th Owner
%th.cred Danger Zone!
- @groups.each do |group| - @groups.each do |group|
%tr %tr
......
...@@ -9,14 +9,15 @@ ...@@ -9,14 +9,15 @@
%table %table
%thead %thead
%th %tr
Name %th
%i.icon-sort-down Name
%th Path %i.icon-sort-down
%th Team Members %th Path
%th Last Commit %th Team Members
%th Edit %th Last Commit
%th.cred Danger Zone! %th Edit
%th.cred Danger Zone!
- @projects.each do |project| - @projects.each do |project|
%tr %tr
......
...@@ -21,15 +21,16 @@ ...@@ -21,15 +21,16 @@
%table %table
%thead %thead
%th Admin %tr
%th %th Admin
Name %th
%i.icon-sort-down Name
%th Username %i.icon-sort-down
%th Email %th Username
%th Projects %th Email
%th Edit %th Projects
%th.cred Danger Zone! %th Edit
%th.cred Danger Zone!
- @admin_users.each do |user| - @admin_users.each do |user|
%tr %tr
......
...@@ -59,10 +59,11 @@ ...@@ -59,10 +59,11 @@
.span6 .span6
%table.milestone-issue-filter %table.milestone-issue-filter
%thead %thead
%th %tr
%ul.nav.nav-pills %th
%li.active= link_to('Open Issues', '#') %ul.nav.nav-pills
%li=link_to('All Issues', '#') %li.active= link_to('Open Issues', '#')
%li=link_to('All Issues', '#')
- @issues.each do |issue| - @issues.each do |issue|
%tr{data: {closed: issue.closed}} %tr{data: {closed: issue.closed}}
%td %td
...@@ -74,10 +75,11 @@ ...@@ -74,10 +75,11 @@
.span6 .span6
%table.milestone-merge-requests-filter %table.milestone-merge-requests-filter
%thead %thead
%th %tr
%ul.nav.nav-pills %th
%li.active= link_to('Open Merge Requests', '#') %ul.nav.nav-pills
%li=link_to('All Merge Requests', '#') %li.active= link_to('Open Merge Requests', '#')
%li=link_to('All Merge Requests', '#')
- @merge_requests.each do |merge_request| - @merge_requests.each do |merge_request|
%tr{data: {closed: merge_request.closed}} %tr{data: {closed: merge_request.closed}}
%td %td
......
...@@ -16,10 +16,11 @@ ...@@ -16,10 +16,11 @@
- else - else
%table#tree-slider{class: "table_#{@hex_path} tree-table" } %table#tree-slider{class: "table_#{@hex_path} tree-table" }
%thead %thead
%th Name %tr
%th Last Update %th Name
%th Last Commit %th Last Update
%th= link_to "history", project_commits_path(@project, @id), class: "btn very_small right" %th Last Commit
%th= link_to "history", project_commits_path(@project, @id), class: "btn very_small right"
- if tree.up_dir? - if tree.up_dir?
%tr.tree-item %tr.tree-item
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment