lib.itmens/social/templates/event/follow_requested.html

14 lines
612 B
HTML
Raw Permalink Normal View History

2024-04-20 12:54:46 -04:00
{% load i18n %}
2024-04-19 20:24:34 -04:00
{% load bleach_tags %}
2024-04-20 12:54:46 -04:00
{% trans 'requested to follow you' %}
2024-04-20 14:05:59 -04:00
<div>
<span class="action">{% include 'users/profile_actions.html' with show_home=1 identity=event.identity %}</span>
<code class="{{ event.identity.id }}_handler"
style="cursor:copy"
onmouseleave="$(this).removeAttr('data-tooltip')"
onclick="navigator.clipboard.writeText(this.innerText);$(this).data('tooltip','copied');">@{{ event.identity.full_handle }}</code>
</div>
2024-04-19 20:24:34 -04:00
<blockquote class="tldr" _="on click toggle .tldr on me">
2024-04-19 21:22:22 -04:00
{{ event.identity.summary|bleach:"a,p,span,br"|default:"" }}
2024-04-19 20:24:34 -04:00
</blockquote>