Add missing tr tags on users views
This commit is contained in:
@@ -1,7 +1,9 @@
|
||||
<table id="budget_investments_list" class="margin-top">
|
||||
<thead>
|
||||
<th scope="col"><%= t("users.show.budget_investments") %></th>
|
||||
<th scope="col"><%= t("users.show.actions") %></th>
|
||||
<tr>
|
||||
<th scope="col"><%= t("users.show.budget_investments") %></th>
|
||||
<th scope="col"><%= t("users.show.actions") %></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<% @budget_investments.each do |budget_investment| %>
|
||||
|
||||
@@ -1,6 +1,8 @@
|
||||
<table class="margin-top">
|
||||
<thead>
|
||||
<th scope="col"><%= t("users.show.comments") %></th>
|
||||
<tr>
|
||||
<th scope="col"><%= t("users.show.comments") %></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<% @comments.each do |comment| %>
|
||||
|
||||
@@ -1,6 +1,8 @@
|
||||
<table class="margin-top">
|
||||
<thead>
|
||||
<th scope="col"><%= t("users.show.debates") %></th>
|
||||
<tr>
|
||||
<th scope="col"><%= t("users.show.debates") %></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<% @debates.each do |debate| %>
|
||||
@@ -13,4 +15,4 @@
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<%= paginate @debates %>
|
||||
<%= paginate @debates %>
|
||||
|
||||
@@ -1,7 +1,9 @@
|
||||
<table class="margin-top">
|
||||
<thead>
|
||||
<th scope="col"><%= t("users.show.proposals") %></th>
|
||||
<th scope="col" colspan="2"><%= t("users.show.actions") %></th>
|
||||
<tr>
|
||||
<th scope="col"><%= t("users.show.proposals") %></th>
|
||||
<th scope="col" colspan="2"><%= t("users.show.actions") %></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<% @proposals.each do |proposal| %>
|
||||
|
||||
Reference in New Issue
Block a user