<%= gettext "Event updated!" %>
|
|
<%= gettext "The event %{title} was updated", title: @old_event.title %>
|
<%= if MapSet.member?(@changes, :title) do %>
<%= gettext "Title" %>
|
<%= @event.title %>
|
<% end %>
<%= if MapSet.member?(@changes, :begins_on) do %>
<%= gettext "Start of event" %>
|
<%= datetime_to_string(@event.begins_on) %>
|
<% end %>
<%= if MapSet.member?(@changes, :ends_on) do %>
<%= gettext "Ending of event" %>
|
<%= datetime_to_string(@event.ends_on) %>
|
<% end %>
|
|
<%= gettext "If you need to cancel your participation, just access the event page through link above and click on the participation button." %>
|
|