13 lines
365 B
Plaintext
13 lines
365 B
Plaintext
<button class="system_evaluation" app="<%= $app %>" >Evaluate</button>
|
|
<br>
|
|
<table id="timeslot_counter">
|
|
<% foreach my $e ( keys %{$evaluation->{'timeslots'}} ) { %>
|
|
<b><%= $e %></b>
|
|
<% foreach my $ed ( keys %{$evaluation->{'timeslots'}->{$e}} ) { %>
|
|
<%= $ed . ' ' . $evaluation->{'timeslots'}->{$e}->{$ed} %>
|
|
<% } %>
|
|
|
|
<br>
|
|
<% } %>
|
|
</table>
|
|
<br> |