Files
grecia/app/views/budgets/index.html.erb
2016-11-28 19:08:09 +01:00

31 lines
709 B
Plaintext

<div class="expanded budget no-margin-top padding">
<div class="row">
<div class="small-12 column">
<h1><%= t('budget.index.title') %></h1>
</div>
</div>
</div>
<div class="row margin-top">
<div class="small-12 medium-6 column">
<table class="table-fixed">
<thead>
<th><%= t('budget.index.name') %></th>
<th><%= t('budget.index.phase') %></th>
</thead>
<tbody>
<% @budgets.each do |budget| %>
<tr>
<td>
<%= link_to budget.name, budget %>
</td>
<td>
<%= t("budgets.phases.#{budget.phase}") %>
</td>
</tr>
<% end %>
</tbody>
</table>
</div>
</div>