c56fb710b6
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
18 lines
633 B
Elixir
18 lines
633 B
Elixir
<%= gettext "New report from %{reporter} on %{instance}", reporter: @report.reporter.preferred_username, instance: @instance[:name] %>
|
|
--
|
|
<%= if Map.has_key?(@report, :event) do %>
|
|
<%= gettext "Event" %>
|
|
<%= @report.event.title %>
|
|
<% end %>
|
|
<%= if Map.has_key?(@report, :comments) && length(@report.comments) > 0 do %>
|
|
<%= gettext "Comments" %>
|
|
<%= for comment <- @report.comments do %>
|
|
<%= comment.text %>
|
|
<% end %>
|
|
<% end %>
|
|
<%= if @report.content do %>
|
|
<%= gettext "Reason" %>
|
|
<%= @report.content %>
|
|
<% end %>
|
|
<%= gettext "View report:" %> <%= page_url(Mobilizon.Web.Endpoint, :moderation_report, @report.id) %>
|