18 lines
		
	
	
	
		
			640 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
	
		
			640 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
<h3>Speaker Profile</h3>
 | 
						|
{% if not user.speaker_profile %}
 | 
						|
<p>
 | 
						|
  To create a session proposal you must first create a speaker profile.
 | 
						|
</p>
 | 
						|
{% endif %}
 | 
						|
<p>
 | 
						|
  Your speaker profile is independent of your attendee profile.
 | 
						|
  The details you provide here will be used during the session selection process,
 | 
						|
  and to populate your speaker bio on the conference website.
 | 
						|
</p>
 | 
						|
<div>
 | 
						|
  {% if not user.speaker_profile %}
 | 
						|
  <a href="{% url "speaker_create" %}" class="btn btn-primary btn-lg" role="button">Create Profile</a>
 | 
						|
  {% else %}
 | 
						|
  <a href="{% url "speaker_edit" %}" class="btn btn-primary" role="button">Edit Profile</a>
 | 
						|
  {% endif %}
 | 
						|
</div>
 |