 feed83f517
			
		
	
	
		feed83f517
		
	
	
	
	
		
			
			* Proposals forms now have a header panel * Adds panels to the speaker forms * Imports latest pinax accounts templates * speakers/base and proposals/base now derive from utility_page.html * Most login forms now derive from take flight themes * Missed email_confirm * More accounts bits * Restructures login form * Puts submit etc buttons inside fieldset borders
		
			
				
	
	
		
			12 lines
		
	
	
	
		
			477 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			477 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {% extends "symposion/proposals/base.html" %}
 | |
| 
 | |
| {% block page_title %}Leaving {{ proposal.title }}{% endblock %}
 | |
| {% block head_title %}Leaving {{ proposal.title }}{% endblock %}
 | |
| 
 | |
| {% block body %}
 | |
|     <form method="POST" action="" enctype="multipart/form-data">
 | |
|         {% csrf_token %}
 | |
|         <p>Are you sure you wish to leave as a speaker on <b>{{ proposal.title }}</b>?</p>
 | |
|         <input type="submit" class="btn btn-primary" value="I am sure" />
 | |
|     </form>
 | |
| {% endblock %}
 |