<%= case @activity.type do %>
<% :comment -> %>
<% :conversation -> %>
|
|
{@activity.subject_params["conversation_text"]
|> sanitize_to_basic_html()
|> raw()}
|
|
|
|
{dgettext(
"activity",
"This information is sent privately to you as a person who registered for this event. Share the informations above with other people with caution."
)}
|
|
|
|
<% end %>
|