Correct invalid table markup
- Add required <tr> within <thead> - Add implicit <tbody> after <thead>
This commit is contained in:
parent
097470bb0c
commit
1f31c1c80d
37 changed files with 330 additions and 291 deletions
|
|
@ -16,9 +16,10 @@
|
|||
.col-md-12
|
||||
%table.table.table-hover
|
||||
%thead
|
||||
%th Schedule
|
||||
%th Selected
|
||||
%th Actions
|
||||
%tr
|
||||
%th Schedule
|
||||
%th Selected
|
||||
%th Actions
|
||||
%tbody
|
||||
- @schedules.where(track: nil).each do |schedule|
|
||||
%tr
|
||||
|
|
@ -59,10 +60,11 @@
|
|||
.col-md-12
|
||||
%table.table.table-hover
|
||||
%thead
|
||||
%th Schedule
|
||||
%th Track
|
||||
%th Selected
|
||||
%th Actions
|
||||
%tr
|
||||
%th Schedule
|
||||
%th Track
|
||||
%th Selected
|
||||
%th Actions
|
||||
%tbody
|
||||
- @schedules.where.not(track: nil).each do |schedule|
|
||||
%tr
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue