blob: 12ebe82eb98a7746a22abf5717039cb26bc5e570 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<% day, auftritte = *day -%>
<%
for auftritt in auftritte
-%>
<tr>
<td class="pplan_datum">
<%= colorize day.to_s(:dots) if day %>
<% if day and day.wday == 6 %><br /><em>Samstag</em><% end %>
</td>
<td class="pplan_zeit">
<%= colorize auftritt.time %>
</td>
<td class="pplan_stueck">
<%= colorize auftritt.program %>
<%= link_to 'E', :controller => 'admin/auftritte', :action => :edit, :id => auftritt %>
</td>
<td class="pplan_besetzung">
<%= colorize(auftritt.place, 'Ort: ') + '<br />' unless auftritt.place.blank? %>
</td>
</tr>
<%
day = nil
end
-%>
|