etiquette/frontends/etiquette_flask/templates/clipboard_tray.html
Ethan Dalool 443d93ce18 Add the clipboard tray where users manage their photo clipboard.
Appearing on search and album pages, the tray is where you can
remove items from your clipboard without having to click on its
checkbox -- that photo card may not even be on the current page.
2017-12-16 03:47:54 -08:00

11 lines
293 B
HTML

{% macro clipboard_tray() %}
<div id="clipboard_tray">
<button
id="clipboard_tray_expandbutton"
class="green_button"
onclick="toggle_clipboard_tray_collapsed()"
>Clipboard: 0 items</button>
<div id="clipboard_tray_body" class="hidden">
</div>
</div>
{% endmacro %}