2021-03-23 15:18:03 +01:00
|
|
|
<%= case @activity.subject do %>
|
2022-04-07 10:33:11 +02:00
|
|
|
<% :post_created -> %>
|
|
|
|
<%= dgettext("activity", "The post %{post} was created by %{profile}.", %{
|
2022-10-31 13:00:45 +01:00
|
|
|
profile: "<b>#{escaped_display_name_and_username(@activity.author)}</b>",
|
2022-09-20 16:53:26 +02:00
|
|
|
post:
|
|
|
|
"<a href=\"#{Routes.page_url(Mobilizon.Web.Endpoint,
|
|
|
|
:post,
|
|
|
|
@activity.subject_params["post_slug"]) |> URI.decode()}\">
|
2022-10-31 13:00:45 +01:00
|
|
|
#{escape_html(@activity.subject_params["post_title"])}
|
2021-03-23 15:18:03 +01:00
|
|
|
</a>"
|
2022-04-07 10:33:11 +02:00
|
|
|
})
|
|
|
|
|> raw %>
|
|
|
|
<% :post_updated -> %>
|
|
|
|
<%= dgettext("activity", "The post %{post} was updated by %{profile}.", %{
|
2022-10-31 13:00:45 +01:00
|
|
|
profile: "<b>#{escaped_display_name_and_username(@activity.author)}</b>",
|
2022-09-20 16:53:26 +02:00
|
|
|
post:
|
|
|
|
"<a href=\"#{Routes.page_url(Mobilizon.Web.Endpoint,
|
|
|
|
:post,
|
|
|
|
@activity.subject_params["post_slug"]) |> URI.decode()}\">
|
2022-10-31 13:00:45 +01:00
|
|
|
#{escape_html(@activity.subject_params["post_title"])}
|
2021-03-23 15:18:03 +01:00
|
|
|
</a>"
|
2022-04-07 10:33:11 +02:00
|
|
|
})
|
|
|
|
|> raw %>
|
|
|
|
<% :post_deleted -> %>
|
|
|
|
<%= dgettext("activity", "The post %{post} was deleted by %{profile}.", %{
|
2022-10-31 13:00:45 +01:00
|
|
|
profile: "<b>#{escaped_display_name_and_username(@activity.author)}</b>",
|
|
|
|
post: "<b>#{escape_html(@activity.subject_params["post_title"])}</b>"
|
2022-04-07 10:33:11 +02:00
|
|
|
})
|
|
|
|
|> raw %>
|
|
|
|
<% end %>
|