correct lint-elixir

This commit is contained in:
Laurent GAY
2025-11-21 17:44:55 +01:00
committed by setop
parent 21e9213c8a
commit 4255219e9f
51 changed files with 608 additions and 614 deletions

View File

@@ -1,20 +1,20 @@
<%= case @activity.subject do %>
<% :group_created -> %>
<%= dgettext("activity", "%{profile} created the group %{group}.", %{
{dgettext("activity", "%{profile} created the group %{group}.", %{
profile: "<b>#{escaped_display_name_and_username(@activity.author)}</b>",
group:
"<a href=\"#{~p"/@#{@activity.subject_params["group_federated_username"]}" |> url() |> URI.decode()}\">
#{escape_html(@activity.subject_params["group_name"])}
</a>"
})
|> raw %>
|> raw}
<% :group_updated -> %>
<%= dgettext("activity", "%{profile} updated the group %{group}.", %{
{dgettext("activity", "%{profile} updated the group %{group}.", %{
profile: "<b>#{escaped_display_name_and_username(@activity.author)}</b>",
group:
"<a href=\"#{~p"/@#{@activity.subject_params["group_federated_username"]}" |> url() |> URI.decode()}\">
#{escape_html(@activity.subject_params["group_name"])}
</a>"
})
|> raw %>
|> raw}
<% end %>