This repository has been archived on 2020-01-20. You can view files and clone it, but cannot push or open issues or pull requests.
evoresa/app/views/events/_event.html.erb

8 lines
257 B
Plaintext

<li class="event">
<h3 style="background-color: <%= event.color %>"><%=h event.title %></h3>
<p><%=h event.details %></p>
<ul class="booking-list">
<%= render :partial => 'bookings/booking', :collection => event.upcoming_bookings %>
</ul>
</li>