cirandas.net

ref: master

app/views/task_mailer/abuse_complaint/_target_notification_message.html.erb


<%= _('An user reported the %{profile_type} %{reported} with the following reason:') % { :profile_type => _(@task.reported.type).downcase, :reported => link_to(@task.reported.name, @task.reported.url), } %>

<%= @task.reason %> <%= _('by %{reporter} at %{date}') % { :reporter => link_to(@task.reporter.name, @task.reporter.url), :date => @task.created_at.to_s } %> <% if @task.reported.is_a? Organization %>

<%= _('The administrators of %{reported} are the following:') % { :reported => link_to(@task.reported.name, @task.reported.url) } %>

    <% @task.reported.admins.each do |admin| %>
  • <%= link_to admin.name, admin.url %>
  • <% end %>

<% end %>