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