35 lines
		
	
	
		
			777 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			777 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% spaceless %}
 | 
						|
{% load bookwyrm_tags %}
 | 
						|
 | 
						|
{% with 0|uuid as uuid %}
 | 
						|
<div
 | 
						|
    id="menu-{{ uuid }}"
 | 
						|
    class="
 | 
						|
        dropdown control
 | 
						|
        {% if right %}is-right{% endif %}
 | 
						|
    "
 | 
						|
>
 | 
						|
    <button
 | 
						|
        class="button dropdown-trigger pulldown-menu {{ class }}"
 | 
						|
        type="button"
 | 
						|
        aria-expanded="false"
 | 
						|
        aria-haspopup="true"
 | 
						|
        aria-controls="menu-options-{{ uuid }}"
 | 
						|
        data-controls="menu-{{ uuid }}"
 | 
						|
    >
 | 
						|
        {% block dropdown-trigger %}{% endblock %}
 | 
						|
    </button>
 | 
						|
 | 
						|
    <div class="dropdown-menu">
 | 
						|
        <ul
 | 
						|
            id="menu-options-{{ uuid }}"
 | 
						|
            class="dropdown-content"
 | 
						|
            role="menu"
 | 
						|
        >
 | 
						|
            {% block dropdown-list %}{% endblock %}
 | 
						|
        </ul>
 | 
						|
    </div>
 | 
						|
</div>
 | 
						|
{% endwith %}
 | 
						|
{% endspaceless %}
 |