2015-10-16 17:53:02 +00:00
|
|
|
{% load i18n %}
|
2017-09-27 13:46:13 +00:00
|
|
|
{% load lca2018_tags %}
|
2015-10-16 17:53:02 +00:00
|
|
|
|
2017-05-07 06:15:41 +00:00
|
|
|
<div>
|
|
|
|
<label class="col-sm-2 col-lg-2">Submitted by</label>
|
|
|
|
<div class="col-sm-10 col-lg-10">
|
|
|
|
<p>{{ proposal.speaker }} <{{ proposal.speaker.email }}></p>
|
|
|
|
</div>
|
|
|
|
</div>
|
2015-10-16 17:53:02 +00:00
|
|
|
|
2017-05-07 06:15:41 +00:00
|
|
|
<div>
|
|
|
|
<label class="col-sm-2 col-lg-2">Proposal Type</label>
|
|
|
|
<div class="col-sm-10 col-lg-10">
|
|
|
|
<p>{{ proposal.kind.name|capfirst }}</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
2016-07-09 13:14:31 +00:00
|
|
|
|
2017-05-07 06:15:41 +00:00
|
|
|
<div>
|
|
|
|
<label class="col-sm-2 col-lg-2">Target Audience</label>
|
|
|
|
<div class="col-sm-10 col-lg-10">
|
|
|
|
<p>{{ proposal.get_target_audience_display }} </p>
|
|
|
|
</div>
|
|
|
|
</div>
|
2015-10-16 17:53:02 +00:00
|
|
|
|
2017-11-12 02:07:55 +00:00
|
|
|
{% if proposal.talk_format %}
|
|
|
|
<div>
|
|
|
|
<label class="col-sm-2 col-lg-2">Talk Format</label>
|
|
|
|
<div class="col-sm-10 col-lg-10">
|
|
|
|
<p>{{ proposal.get_talk_format_display }}</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
|
2015-10-16 17:53:02 +00:00
|
|
|
{% if proposal.additional_speakers.all %}
|
2017-05-07 06:15:41 +00:00
|
|
|
<div>
|
|
|
|
<label class="col-sm-2 col-lg-2">Additional Speakers</label>
|
|
|
|
<div class="col-sm-10 col-lg-10">
|
|
|
|
<table class="table">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>Name</th>
|
|
|
|
<th>Email</th>
|
|
|
|
<th>Status</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{% for speaker in proposal.additional_speakers.all %}
|
|
|
|
<tr>
|
|
|
|
{% if speaker.user %}
|
|
|
|
<td>{{ speaker.name }}</td>
|
|
|
|
<td>{{ speaker.email }}</td>
|
|
|
|
<td>Joined</td>
|
|
|
|
{% else %}
|
|
|
|
<td>Unknown</td>
|
|
|
|
<td>{{ speaker.email }}</td>
|
|
|
|
<td>Invitation Sent</td>
|
|
|
|
{% endif %}
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<p></p>
|
2015-10-16 17:53:02 +00:00
|
|
|
{% endif %}
|
|
|
|
|
2017-05-07 06:15:41 +00:00
|
|
|
<div>
|
|
|
|
<label class="col-sm-2 col-lg-2">Abstract</label>
|
|
|
|
<div class="col-sm-10 col-lg-10">
|
|
|
|
<div class="abstract monospace-text well">{{ proposal.abstract_html|safe }} </div>
|
|
|
|
<p></p>
|
|
|
|
</div>
|
|
|
|
</div>
|
2015-10-16 17:53:02 +00:00
|
|
|
|
2017-05-07 06:15:41 +00:00
|
|
|
<div>
|
|
|
|
<label class="col-sm-2 col-lg-2">Private Abstract</label>
|
|
|
|
<div class="col-sm-10 col-lg-10">
|
|
|
|
<div class="private_abstract monospace-text well">{{ proposal.private_abstract_html|safe }} </div>
|
|
|
|
<p></p>
|
|
|
|
</div>
|
|
|
|
</div>
|
2016-06-20 23:58:27 +00:00
|
|
|
|
2017-05-07 06:15:41 +00:00
|
|
|
<div>
|
|
|
|
<label class="col-sm-2 col-lg-2">Project</label>
|
|
|
|
<div class="col-sm-10 col-lg-10">
|
|
|
|
{% if proposal.project %}
|
|
|
|
<p>{{ proposal.project|safe }} </p>
|
|
|
|
{% else %}
|
|
|
|
<p><b>None Provided</b></p>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
</div>
|
2016-06-20 23:58:27 +00:00
|
|
|
|
2017-05-07 06:15:41 +00:00
|
|
|
<div>
|
|
|
|
<label class="col-sm-2 col-lg-2">Project URL</label>
|
|
|
|
<div class="col-sm-10 col-lg-10">
|
|
|
|
{% if proposal.project_url %}
|
|
|
|
<p><a href="{{ proposal.project_url|safe }}">{{ proposal.project_url|safe }}</a> </p>
|
|
|
|
{% else %}
|
|
|
|
<p><b>None Provided</b></p>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
</div>
|
2016-06-20 23:58:27 +00:00
|
|
|
|
2017-05-07 06:15:41 +00:00
|
|
|
<div>
|
|
|
|
<label class="col-sm-2 col-lg-2">Video URL</label>
|
|
|
|
<div class="col-sm-10 col-lg-10">
|
|
|
|
{% if proposal.video_url %}
|
|
|
|
<p><a href="{{ proposal.video_url|safe }}">{{ proposal.video_url|safe }}</a> </p>
|
|
|
|
{% else %}
|
|
|
|
<p><b>None Provided</b></p>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
</div>
|
2016-06-20 23:58:27 +00:00
|
|
|
|
2017-05-07 06:15:41 +00:00
|
|
|
<div>
|
|
|
|
<label class="col-sm-2 col-lg-2">Special Requirements</label>
|
|
|
|
<div class="col-sm-10 col-lg-10">
|
|
|
|
{% if proposal.technical_requirements_html %}
|
|
|
|
<div class="special_requirements monospace-text">{{ proposal.technical_requirements_html|safe }}</div>
|
|
|
|
{% else %}
|
|
|
|
<div class="special_requirements monospace-text"><b>No Special Talk Requirements Requested</b></div>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
<br/>
|
2015-10-16 17:53:02 +00:00
|
|
|
|
2016-07-09 13:14:31 +00:00
|
|
|
{% for speaker in proposal.speakers %}
|
2017-05-07 06:15:41 +00:00
|
|
|
{% if speaker.name %}
|
|
|
|
<div class="panel panel-default">
|
|
|
|
<div class="panel-heading">
|
|
|
|
<h3 class="panel-title">Speaker: {{ speaker.name }}</h3>
|
|
|
|
</div>
|
|
|
|
<div class="panel-body">
|
|
|
|
<div>
|
|
|
|
<label class="col-sm-2 col-lg-2">Biography</label>
|
|
|
|
<div class="col-sm-10 col-lg-10 well monospace-text">{{ speaker.biography_html|safe }} </div>
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<label class="col-sm-2 col-lg-2">Experience</label>
|
|
|
|
<div class="col-sm-10 col-lg-10 well monospace-text">{{ speaker.experience_html|safe }} </div>
|
|
|
|
</div>
|
|
|
|
{% if speaker.accessibility_html %}
|
|
|
|
<div>
|
|
|
|
<label class="col-sm-2 col-lg-2">Accessibility Requirements</label>
|
|
|
|
<div class="col-sm-10 col-lg-10 well monospace-text">{{ speaker.accessibility_html|safe }} </div>
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
2016-07-09 13:14:31 +00:00
|
|
|
{% endfor %}
|
|
|
|
|
2016-07-09 23:18:08 +00:00
|
|
|
{% can_manage proposal as can_manage_proposal %}
|
2016-07-09 13:14:31 +00:00
|
|
|
{% if can_manage_proposal or request.user.speaker_profile in proposal.speakers %}
|
2017-05-07 06:15:41 +00:00
|
|
|
<div>
|
|
|
|
<label class="col-sm-2 col-lg-2">Travel Assistance Required</label>
|
|
|
|
<div class="col-sm-10 col-lg-10">
|
|
|
|
<table class="table">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>Name</th>
|
|
|
|
<th>Travel</th>
|
|
|
|
<th>Accomodation</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{% for speaker in proposal.speakers %}
|
|
|
|
<tr>
|
|
|
|
{% if speaker.user %}
|
|
|
|
<td>{{ speaker.name }}</td>
|
|
|
|
<td>{{ speaker.travel_assistance }}</td>
|
|
|
|
<td>{{ speaker.accommodation_assistance }}</td>
|
|
|
|
{% else %}
|
|
|
|
<td><b>Unconfirmed co-presenter</b></td>
|
|
|
|
<td><b>Unknown</b></td>
|
|
|
|
<td><b>Unknown</b></td>
|
|
|
|
{% endif %}
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</div>
|
2016-07-09 13:14:31 +00:00
|
|
|
<br />
|
|
|
|
{% endif %}
|
2016-06-27 08:13:38 +00:00
|
|
|
|
|
|
|
<div>
|
2017-05-07 06:15:41 +00:00
|
|
|
<label class="col-sm-2 col-lg-2">Recording Release</label>
|
|
|
|
<div class="col-sm-10 col-lg-10">
|
|
|
|
<p>{{ proposal.recording_release }} </p>
|
|
|
|
</div>
|
|
|
|
|
2016-06-27 08:13:38 +00:00
|
|
|
</div>
|
2016-06-20 23:58:27 +00:00
|
|
|
|
2017-05-07 06:15:41 +00:00
|
|
|
<div>
|
|
|
|
<label class="col-sm-2 col-lg-2">Materials Release</label>
|
|
|
|
<div class="col-sm-10 col-lg-10">
|
|
|
|
<p>{{ proposal.materials_release }} </p>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|