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.
 
 
 
 
 
 

30 lines
963 B

<h1 class="mb‑4">Monats‑Report</h1>
<% @report.each do |month, groups| %>
<% is_current_month = month.month == Date.today.month && month.year == Date.today.year %>
<div class="card mb‑4 mt-4 <%= 'bg-secondary text-white' if is_current_month %>">
<div class="card-header">
<strong><%= month.strftime("%B %Y") %></strong>
</div>
<div class="card-body">
<table class="table table‑sm table‑bordered table-stripe">
<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 %>