31 lines
686 B
Plaintext
31 lines
686 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>
|
|
<%= budget.phase %>
|
|
</td>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|