15 lines
		
	
	
		
			293 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
		
		
			
		
	
	
			15 lines
		
	
	
		
			293 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
|   | {% load allauth %} | ||
|  | <section> | ||
|  |     <h2> | ||
|  |         {% slot title %} | ||
|  |         {% endslot %} | ||
|  |     </h2> | ||
|  |     {% slot body %} | ||
|  |     {% endslot %} | ||
|  |     {% if slots.actions %} | ||
|  |         <ul> | ||
|  |             {% for action in slots.actions %}<li>{{ action }}</li>{% endfor %} | ||
|  |         </ul> | ||
|  |     {% endif %} | ||
|  | </section> |