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