forked from potsda.mn/mobilizon
8235f4c7b5
See https://gist.github.com/chrismccord/2ab350f154235ad4a4d0f4de6decba7b#rename-your-htmleex-and-htmlleex-templates-to-htmlheex-optional Signed-off-by: Thomas Citharel <tcit@tcit.fr>
32 lines
1.4 KiB
Plaintext
32 lines
1.4 KiB
Plaintext
<%= case @activity.subject do %>
|
|
<% :group_created -> %>
|
|
<%=
|
|
dgettext("activity", "%{profile} created the group %{group}.",
|
|
%{
|
|
profile: "<b>#{Mobilizon.Actors.Actor.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()}\">
|
|
#{@activity.subject_params["group_name"]}
|
|
</a>"
|
|
}
|
|
) |> raw %>
|
|
<% :group_updated -> %>
|
|
<%=
|
|
dgettext("activity", "%{profile} updated the group %{group}.",
|
|
%{
|
|
profile: "<b>#{Mobilizon.Actors.Actor.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()}\">
|
|
#{@activity.subject_params["group_name"]}
|
|
</a>"
|
|
}
|
|
) |> raw %>
|
|
<% end %> |