mirror of
https://framagit.org/framasoft/mobilizon.git
synced 2025-02-20 16:36:27 +00:00
21 lines
650 B
Text
21 lines
650 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 %>
|