%#
<%= gettext("Participants for %{event}") > %>
<%= gettext("Participants for %{event}", event: @event.title) %>
- <%= gettext("Begins on") %>
- <%= datetime_to_string(@event.begins_on, @locale, :long) %>
<%= if @event.ends_on do %>
- <%= gettext("Ends on") %>
- <%= datetime_to_string(@event.ends_on, @locale, :long) %>
<% end %>
<%= if @event.physical_address do %>
- <%= gettext("Location") %>
- <%= render_address(@event.physical_address) %>
<% end %>
- <%= gettext("Number of participants") %>
- <%= @event.participant_stats.participant + @event.participant_stats.moderator + @event.participant_stats.administrator + @event.participant_stats.creator %>
<%= for column <- @columns do %>
<%= column %> |
<% end %>
<%= for line <- @data do %>
<%= for cell <- line do %>
<%= cell %> |
<% end %>
<% end %>