22 lines
		
	
	
	
		
			364 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
	
		
			364 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!--- Sample template. Move elsewhere once it's ready to go. -->
 | 
						|
 | 
						|
{% extends "site_base.html" %}
 | 
						|
{% block body %}
 | 
						|
 | 
						|
  <h1>Attendee Profile</h1>
 | 
						|
 | 
						|
  <p>Something something fill in your attendee details here!</p>
 | 
						|
 | 
						|
  <form method="post" action="">
 | 
						|
    {% csrf_token %}
 | 
						|
 | 
						|
    <table>
 | 
						|
        {{ form }}
 | 
						|
    </table>
 | 
						|
 | 
						|
    <input type="submit">
 | 
						|
 | 
						|
  </form>
 | 
						|
 | 
						|
 | 
						|
{% endblock %}
 |