2021-01-29 16:51:36 +00:00
|
|
|
{% extends 'components/dropdown.html' %}
|
2021-02-28 02:48:10 +00:00
|
|
|
{% load i18n %}
|
2021-01-25 22:03:18 +00:00
|
|
|
{% load bookwyrm_tags %}
|
|
|
|
|
|
|
|
{% block dropdown-trigger %}
|
|
|
|
<span class="icon icon-dots-three">
|
2021-02-28 02:48:10 +00:00
|
|
|
<span class="is-sr-only">{% trans "More options" %}</span>
|
2021-01-25 22:03:18 +00:00
|
|
|
</span>
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block dropdown-list %}
|
2021-01-29 19:44:04 +00:00
|
|
|
<li role="menuitem">
|
2021-05-04 16:34:16 +00:00
|
|
|
<a href="{% url 'direct-messages-user' user|username %}" class="button is-fullwidth is-small">{% trans "Send direct message" %}</a>
|
2021-01-29 19:44:04 +00:00
|
|
|
</li>
|
2021-03-08 23:49:44 +00:00
|
|
|
<li role="menuitem">
|
2021-04-17 17:28:03 +00:00
|
|
|
{% include 'snippets/report_button.html' with user=user class="is-fullwidth" %}
|
2021-03-08 23:49:44 +00:00
|
|
|
</li>
|
2021-01-25 22:03:18 +00:00
|
|
|
<li role="menuitem">
|
2021-01-26 21:00:36 +00:00
|
|
|
{% include 'snippets/block_button.html' with user=user class="is-fullwidth" %}
|
2021-01-25 22:03:18 +00:00
|
|
|
</li>
|
|
|
|
{% endblock %}
|