2021-01-29 16:51:36 +00:00
|
|
|
{% extends 'components/dropdown.html' %}
|
2021-01-25 22:03:18 +00:00
|
|
|
{% load bookwyrm_tags %}
|
|
|
|
|
|
|
|
{% block dropdown-trigger %}
|
|
|
|
<span class="icon icon-dots-three">
|
|
|
|
<span class="is-sr-only">More options</span>
|
|
|
|
</span>
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block dropdown-list %}
|
2021-01-29 19:44:04 +00:00
|
|
|
<li role="menuitem">
|
|
|
|
<a href="/direct-messages/{{ user|username }}" class="button is-fullwidth is-small">Send direct message</a>
|
|
|
|
</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 %}
|