Add missing tr tags on users views

This commit is contained in:
decabeza
2019-03-07 14:05:01 +01:00
parent 41ec9c94b0
commit 5d62ab71ff
4 changed files with 15 additions and 7 deletions

View File

@@ -1,7 +1,9 @@
<table id="budget_investments_list" class="margin-top"> <table id="budget_investments_list" class="margin-top">
<thead> <thead>
<th scope="col"><%= t("users.show.budget_investments") %></th> <tr>
<th scope="col"><%= t("users.show.actions") %></th> <th scope="col"><%= t("users.show.budget_investments") %></th>
<th scope="col"><%= t("users.show.actions") %></th>
</tr>
</thead> </thead>
<tbody> <tbody>
<% @budget_investments.each do |budget_investment| %> <% @budget_investments.each do |budget_investment| %>

View File

@@ -1,6 +1,8 @@
<table class="margin-top"> <table class="margin-top">
<thead> <thead>
<th scope="col"><%= t("users.show.comments") %></th> <tr>
<th scope="col"><%= t("users.show.comments") %></th>
</tr>
</thead> </thead>
<tbody> <tbody>
<% @comments.each do |comment| %> <% @comments.each do |comment| %>

View File

@@ -1,6 +1,8 @@
<table class="margin-top"> <table class="margin-top">
<thead> <thead>
<th scope="col"><%= t("users.show.debates") %></th> <tr>
<th scope="col"><%= t("users.show.debates") %></th>
</tr>
</thead> </thead>
<tbody> <tbody>
<% @debates.each do |debate| %> <% @debates.each do |debate| %>
@@ -13,4 +15,4 @@
</tbody> </tbody>
</table> </table>
<%= paginate @debates %> <%= paginate @debates %>

View File

@@ -1,7 +1,9 @@
<table class="margin-top"> <table class="margin-top">
<thead> <thead>
<th scope="col"><%= t("users.show.proposals") %></th> <tr>
<th scope="col" colspan="2"><%= t("users.show.actions") %></th> <th scope="col"><%= t("users.show.proposals") %></th>
<th scope="col" colspan="2"><%= t("users.show.actions") %></th>
</tr>
</thead> </thead>
<tbody> <tbody>
<% @proposals.each do |proposal| %> <% @proposals.each do |proposal| %>