mirror of
https://framagit.org/framasoft/mobilizon.git
synced 2024-12-28 02:40:22 +00:00
bd4fad3c58
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
8 lines
566 B
Text
8 lines
566 B
Text
<%= if @event.options.timezone == nil do %>
|
|
<%= @date |> datetime_tz_convert(@timezone) |> datetime_to_string(@locale , :short) %>
|
|
<% else %>
|
|
<strong><%= @date |> datetime_tz_convert(@event.options.timezone) |> datetime_to_string(@locale, :short) %></strong><br />
|
|
<%= if @event.options.timezone != @timezone do %>
|
|
<span style="font-size: 13px;"><%= gettext "🌐 %{timezone} %{offset}", timezone: @event.options.timezone, offset: @date |> datetime_tz_convert(@event.options.timezone) |> Cldr.DateTime.Formatter.zone_gmt() %></span>
|
|
<% end %>
|
|
<% end %>
|