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">
<thead>
<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| %>

View File

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

View File

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

View File

@@ -1,7 +1,9 @@
<table class="margin-top">
<thead>
<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| %>