moviewyrm/bookwyrm/templates/snippets/user_options.html
2021-01-25 14:03:18 -08:00

15 lines
344 B
HTML

{% 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">
{% include 'snippets/block_button.html' with user=user %}
</li>
{% endblock %}