 1886323d74
			
		
	
	
		1886323d74
		
	
	
	
	
		
			
			Boot custom CSS, and put some base, standard css in its place. Shame I did not start with fresh Bootstrap4, but oh well. Some more templates could be made to make this less messy, which would be good.
		
			
				
	
	
		
			16 lines
		
	
	
	
		
			276 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
	
		
			276 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {% extends "site_base.html" %}
 | |
| {% load bootstrap %}
 | |
| {% load registrasion_tags %}
 | |
| 
 | |
| {% block body %}
 | |
| 
 | |
| <h2>Send reminder e-mails</h2>
 | |
| 
 | |
| <form class="form-horizontal" method="POST">
 | |
|   {% csrf_token %}
 | |
|   {{ form | bootstrap}}
 | |
|   <br/>
 | |
|   <input type="submit">
 | |
| </form>
 | |
| 
 | |
| {% endblock %}
 |