symposion_app/pinaxcon/templates/symposion/dashboard/_profile.html
Joel Addison cbea9ec0e1 Improved dashboard styling
Display proposals in rows and columns, instead of all on one row.
Fix spacing for sections on the page.
Improve small screen display of page.
2019-10-22 09:28:47 +10:00

19 lines
637 B
HTML

<h3>Speaker Profile</h3>
{% if not user.speaker_profile %}
<p>
To create a speaking or miniconf proposal you must first create a speaker
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
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>