| 
									
										
										
										
											2015-10-16 12:53:02 -05:00
										 |  |  | {% extends "symposion/proposals/base.html" %} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | {% load i18n %} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | {% block head_title %}{{ proposal.title }}{% endblock %} | 
					
						
							| 
									
										
										
										
											2016-06-28 07:58:06 +10:00
										 |  |  | {% block page_title %}#{{ proposal.number }}: {{ proposal.title }} ({{ proposal.speaker }}){% endblock %} | 
					
						
							| 
									
										
										
										
											2015-10-16 12:53:02 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-28 07:58:06 +10:00
										 |  |  | {% block proposals_body_outer %} | 
					
						
							| 
									
										
										
										
											2017-04-25 15:07:08 +10:00
										 |  |  |   <div class="panel panel__compact"> | 
					
						
							|  |  |  |     <div class="panel--content"> | 
					
						
							|  |  |  |    | 
					
						
							|  |  |  |       <div class="panel--tab-controls"> | 
					
						
							|  |  |  |         <div class="panel--tabs"> | 
					
						
							|  |  |  |           <a data-tab-control="Details" class="panel--tab-switch is-active">{% trans "Proposal Details" %}</a> | 
					
						
							|  |  |  |           <a data-tab-control="Documents" class="panel--tab-switch">{% trans "Supporting Documents" %}</a> | 
					
						
							|  |  |  |           <a data-tab-control="Feedback" class="panel--tab-switch">{% trans "Reviewer Feedback" %} ({{ proposal.messages.all|length }})</a> | 
					
						
							| 
									
										
										
										
											2016-06-27 18:13:38 +10:00
										 |  |  |         </div> | 
					
						
							| 
									
										
										
										
											2017-04-25 15:07:08 +10:00
										 |  |  |       </div> | 
					
						
							|  |  |  |    | 
					
						
							|  |  |  |       <div data-tab-content="Details" class="panel--tab-content is-active"> | 
					
						
							|  |  |  |         {% include "symposion/proposals/_proposal_fields.html" %} | 
					
						
							|  |  |  |         <div class="btn-group"> | 
					
						
							|  |  |  |           {% if not proposal.cancelled %} | 
					
						
							|  |  |  |             {% if request.user == proposal.speaker.user %} | 
					
						
							|  |  |  |               <a href="{% url "proposal_edit" proposal.pk %}" class="btn btn-default">{% trans "Edit this proposal" %}</a> | 
					
						
							|  |  |  |               <a href="{% url "proposal_cancel" proposal.pk %}" class="btn btn-default">{% trans "Cancel this proposal" %}</a> | 
					
						
							|  |  |  |             {% else %} | 
					
						
							|  |  |  |               <a href="{% url "proposal_leave" proposal.pk %}" class="btn btn-default">{% trans "Remove me from this proposal" %}</a> | 
					
						
							|  |  |  |             {% endif %} | 
					
						
							| 
									
										
										
										
											2016-06-27 18:13:38 +10:00
										 |  |  |           {% else %} | 
					
						
							| 
									
										
										
										
											2017-04-25 15:07:08 +10:00
										 |  |  |             {% trans 'Cancelled' %} | 
					
						
							| 
									
										
										
										
											2016-06-27 18:13:38 +10:00
										 |  |  |           {% endif %} | 
					
						
							| 
									
										
										
										
											2015-10-16 12:53:02 -05:00
										 |  |  |         </div> | 
					
						
							| 
									
										
										
										
											2017-04-25 15:07:08 +10:00
										 |  |  |       </div> | 
					
						
							|  |  |  |    | 
					
						
							|  |  |  |       <div data-tab-content="Documents" class="panel--tab-content"> | 
					
						
							|  |  |  |         {% if proposal.supporting_documents.exists %} | 
					
						
							|  |  |  |           <table class="table table-striped"> | 
					
						
							|  |  |  |             {% for document in proposal.supporting_documents.all %} | 
					
						
							|  |  |  |               <tr> | 
					
						
							|  |  |  |                 <td><a href="{{ document.download_url }}">{{ document.description }}</a></td> | 
					
						
							|  |  |  |                 <td> | 
					
						
							|  |  |  |                   <form class="form-horizontal" style="margin: 0;" method="post" action="{% url "proposal_document_delete" document.pk %}"> | 
					
						
							|  |  |  |                     {% csrf_token %} | 
					
						
							|  |  |  |                     <button type="submit" class="btn btn-xs">{% trans 'delete' %}</button> | 
					
						
							|  |  |  |                   </form> | 
					
						
							|  |  |  |                 </td> | 
					
						
							|  |  |  |               </tr> | 
					
						
							|  |  |  |             {% endfor %} | 
					
						
							|  |  |  |           </table> | 
					
						
							|  |  |  |             {% else %} | 
					
						
							|  |  |  |                 <p>{% trans 'No supporting documents attached to this proposal.' %}</p> | 
					
						
							|  |  |  |             {% endif %} | 
					
						
							|  |  |  |             <a class="btn btn-default btn-sm{% if proposal.cancelled %} btn-disabled{% endif %}" href="{% url "proposal_document_create" proposal.pk %}"><i class="fa fa-upload"></i> {% trans 'Add Document' %}</a> | 
					
						
							|  |  |  |           </div> | 
					
						
							|  |  |  |    | 
					
						
							|  |  |  |           <div data-tab-content="Feedback" class="panel--tab-content"> | 
					
						
							|  |  |  |             <h3>{% trans 'Conversation with Reviewers' %}</h3> | 
					
						
							|  |  |  |             {% for message in proposal.messages.all %} | 
					
						
							| 
									
										
										
										
											2016-06-27 18:13:38 +10:00
										 |  |  |               <div class="review-box"> | 
					
						
							| 
									
										
										
										
											2017-04-25 15:07:08 +10:00
										 |  |  |                 <div class="comment"><em>{{ message.message|safe }}</em></div> | 
					
						
							|  |  |  |                 <div class="dateline"><b>{{ message.user.username }}</b> {{ message.submitted_at|timesince }} ago</div> | 
					
						
							| 
									
										
										
										
											2016-06-27 18:13:38 +10:00
										 |  |  |               </div> | 
					
						
							|  |  |  |               <br /> | 
					
						
							| 
									
										
										
										
											2017-04-25 15:07:08 +10:00
										 |  |  |             {% endfor %} | 
					
						
							|  |  |  |    | 
					
						
							|  |  |  |             <h3>{% trans 'Leave a Message' %}</h3> | 
					
						
							|  |  |  |             <p>{% trans 'You can leave a message for the reviewers here.' %}</p> | 
					
						
							|  |  |  |             <form class="form-horizontal" action="" method="POST" accept-charset="utf-8"> | 
					
						
							| 
									
										
										
										
											2016-06-27 18:13:38 +10:00
										 |  |  |               {% csrf_token %} | 
					
						
							|  |  |  |               <fieldset> | 
					
						
							|  |  |  |                 {% include "_form_snippet.html" with form=message_form %} | 
					
						
							| 
									
										
										
										
											2016-06-28 07:58:06 +10:00
										 |  |  |                 <div class="btn-group"> | 
					
						
							| 
									
										
										
										
											2017-04-25 15:07:08 +10:00
										 |  |  |                   <button type="submit" name="message_submit" class="btn btn-primary">{% trans 'Submit' %}</button> | 
					
						
							| 
									
										
										
										
											2016-06-28 07:58:06 +10:00
										 |  |  |                 </div> | 
					
						
							| 
									
										
										
										
											2016-06-27 18:13:38 +10:00
										 |  |  |               </fieldset> | 
					
						
							| 
									
										
										
										
											2017-04-25 15:07:08 +10:00
										 |  |  |             </form> | 
					
						
							|  |  |  |           </div> | 
					
						
							| 
									
										
										
										
											2016-06-27 18:13:38 +10:00
										 |  |  |         </div> | 
					
						
							|  |  |  |       </div> | 
					
						
							| 
									
										
										
										
											2015-10-16 12:53:02 -05:00
										 |  |  |     </div> | 
					
						
							| 
									
										
										
										
											2017-04-25 15:07:08 +10:00
										 |  |  |   </div> | 
					
						
							| 
									
										
										
										
											2015-10-16 12:53:02 -05:00
										 |  |  | {% endblock %} |