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.
		
			
				
	
	
		
			11 lines
		
	
	
	
		
			293 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			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 %}
 |