moviewyrm/bookwyrm/templates/snippets/user_options.html

15 lines
365 B
HTML
Raw Normal View History

2021-01-25 22:03:18 +00:00
{% extends 'snippets/components/dropdown.html' %}
{% 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 %}
<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 %}