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

19 lines
464 B
HTML
Raw Normal View History

2018-06-29 22:56:52 +00:00
{% load i18n %}
<div class="row">
<div class="col-12">
<h2 class="mb-5">{% trans "Speaking and Miniconfs" %}</h2>
2018-06-29 22:56:52 +00:00
</div>
</div>
<div class="row">
2018-09-24 05:19:31 +00:00
{% if user.speaker_profile and proposal_kinds|length > 0 %}
<div class="col-md-6 d-flex flex-column">
2018-06-29 22:56:52 +00:00
{% include "symposion/dashboard/_new_proposal.html" %}
</div>
2018-09-24 04:55:09 +00:00
{% endif %}
<div class="col-md-6 d-flex flex-column">
2018-06-29 22:56:52 +00:00
{% include "symposion/dashboard/_profile.html" %}
</div>
2018-09-27 07:49:00 +00:00
</div>