symposion_app/pinaxcon/templates/symposion/dashboard/_profile.html

20 lines
637 B
HTML
Raw Normal View History

<h3>Speaker Profile</h3>
2018-06-29 22:56:52 +00:00
{% if not user.speaker_profile %}
<p>
To create a speaking or miniconf proposal you must first create a speaker
2018-06-29 22:56:52 +00:00
profile.
</p>
{% endif %}
<p>
Your speaker profile is independent of your attendee profile and the
details you provide here will be used during selection and to populate
2018-06-29 22:56:52 +00:00
your speaker bio on the conference website.
</p>
<div>
2018-06-29 22:56:52 +00:00
{% 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>
2018-06-29 22:56:52 +00:00
{% endif %}
</div>