You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
660 B
24 lines
660 B
<h1>Kilometersätze je Jahr</h1>
|
|
|
|
<%= link_to "Neuen Satz anlegen", new_mileage_rate_path, class: "btn btn-primary mb-3" %>
|
|
|
|
<table class="table table-striped table-bordered">
|
|
<thead>
|
|
<tr>
|
|
<th>Jahr</th>
|
|
<th>Satz (€/km)</th>
|
|
<th>Aktionen</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<% @mileage_rates.each do |rate| %>
|
|
<tr>
|
|
<td><%= rate.year %></td>
|
|
<td><%= number_to_currency(rate.rate_per_km, unit: "€", separator: ",", delimiter: ".", precision: 2) %></td>
|
|
<td>
|
|
<%= link_to "Bearbeiten", edit_mileage_rate_path(rate), class: "btn btn-sm btn-outline-secondary" %>
|
|
</td>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|