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.
 
 
 
 
 
 

29 lines
819 B

<h1 class="mb‑4">Monats‑Report</h1>
<% @report.each do |month, groups| %>
<div class="card mb‑4 mt-4">
<div class="card-header">
<strong><%= month.strftime("%B %Y") %></strong>
</div>
<div class="card-body">
<table class="table table‑sm table‑bordered table-striped ">
<thead>
<tr>
<th style="width: 33%">Typ</th>
<th style="width: 33%">Art</th>
<th style="width: 33%">Gesamtzeit</th>
</tr>
</thead>
<tbody>
<% groups.each do |(typ, art), data| %>
<tr>
<td><%= typ.capitalize %></td>
<td><%= art %></td>
<td><%= data[:hours] %>h <%= data[:minutes] %>min</td>
</tr>
<% end %>
</tbody>
</table>
</div>
</div>
<% end %>