59 lines
2.6 KiB
HTML
59 lines
2.6 KiB
HTML
{% extends "base_site.html" %}
|
|
{% load staticfiles %}
|
|
{% block title %}Proceedings - View{% endblock %}
|
|
|
|
{% block extrahead %}{{ block.super }}
|
|
<script src="{% static 'secr/js/utils.js' %}"></script>
|
|
{% endblock %}
|
|
|
|
{% block breadcrumbs %}{{ block.super }}
|
|
» <a href="../">Proceedings</a>
|
|
» {{ meeting.number }}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<div class="module">
|
|
<h2>IETF {{meeting.number}} Meeting - View</h2>
|
|
{% if meeting.frozen == 1 %}
|
|
<ul class="errorlist"><li> THIS IS A FROZEN PROCEEDING</li></ul>
|
|
{% endif %}
|
|
<table class="full-width" id="proceedings-view-first-col">
|
|
<tbody>
|
|
<tr><td>Meeting Start Date:</td><td> {{ meeting.date }}</td></tr>
|
|
<tr><td>Meeting End Date:</td><td> {{ meeting.end_date }} </td></tr>
|
|
<tr><td>Meeting City:</td><td> {{ meeting.city }} </td></tr>
|
|
<tr><td>Meeting Country:</td><td> {{ meeting.country }} </td></tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
<div class="inline-related">
|
|
<h2>Dates</h2>
|
|
<table class="full-width" id="proceedings-view-first-col">
|
|
<tbody>
|
|
<tr><td>Submission Start Date:</td><td> {{ meeting.get_submission_start_date }} </td></tr>
|
|
<tr><td>Submission Cut Off Date:</td><td> {{ meeting.get_submission_cut_off_date }} </td></tr>
|
|
<tr><td>Submission Correction Cut Off Date:</td><td> {{ meeting.get_submission_correction_date }} </td></tr>
|
|
<tr><td>Progress Report Start:</td><td> {{ meeting.pr_from_date }} </td></tr>
|
|
<tr><td>Progress Report End:</td><td> {{ meeting.pr_to_date }} </td></tr>
|
|
</tbody>
|
|
</table>
|
|
</div><!-- inline-related-->
|
|
|
|
<div class="button-group">
|
|
{% if meeting.frozen == 0 %}
|
|
<ul>
|
|
<li><button type="button" onclick="window.location='{% url 'ietf.secr.proceedings.views.select' meeting_num=meeting.number %}'">Upload Materials</button></li>
|
|
<li><button type="button" onclick="window.location='convert/'">Convert Materials</button></li>
|
|
<li><button type="button" onclick="window.location='status/'">Proceedings {{ meeting.number }} Status</button></li>
|
|
</ul>
|
|
{% endif %}
|
|
{% if meeting.frozen == 1 %}
|
|
<ul>
|
|
<li><button type="button" onclick="window.location='status/'">Proceedings {{ meeting.number }} Status</button></li>
|
|
</ul>
|
|
{% endif %}
|
|
</div> <!-- button-group -->
|
|
</div> <!-- module -->
|
|
|
|
{% endblock %} |