forked from potsda.mn/mobilizon
470a3e594b
Closes #1151 Signed-off-by: Thomas Citharel <tcit@tcit.fr>
25 lines
1,015 B
Plaintext
25 lines
1,015 B
Plaintext
<%= case @activity.subject do %>
|
|
<% :group_created -> %>
|
|
<%= dgettext("activity", "%{profile} created the group %{group}.", %{
|
|
profile: "<b>#{escaped_display_name_and_username(@activity.author)}</b>",
|
|
group:
|
|
"<a href=\"#{Routes.page_url(Mobilizon.Web.Endpoint,
|
|
:actor,
|
|
@activity.subject_params["group_federated_username"]) |> URI.decode()}\">
|
|
#{escape_html(@activity.subject_params["group_name"])}
|
|
</a>"
|
|
})
|
|
|> raw %>
|
|
<% :group_updated -> %>
|
|
<%= dgettext("activity", "%{profile} updated the group %{group}.", %{
|
|
profile: "<b>#{escaped_display_name_and_username(@activity.author)}</b>",
|
|
group:
|
|
"<a href=\"#{Routes.page_url(Mobilizon.Web.Endpoint,
|
|
:actor,
|
|
@activity.subject_params["group_federated_username"]) |> URI.decode()}\">
|
|
#{escape_html(@activity.subject_params["group_name"])}
|
|
</a>"
|
|
})
|
|
|> raw %>
|
|
<% end %>
|