15 lines
		
	
	
		
			293 B
		
	
	
	
		
			HTML
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			293 B
		
	
	
	
		
			HTML
		
	
	
		
			Executable File
		
	
	
	
	
| {% 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>
 | 
