forked from adamlaska/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathview.html
More file actions
80 lines (50 loc) · 2.55 KB
/
view.html
File metadata and controls
80 lines (50 loc) · 2.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{% 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">
<col id="proceedings-view-first-col" />
<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>
</table>
<div class="inline-related">
<h2>Dates</h2>
<table class="full-width">
<col id="proceedings-view-first-col" />
<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>
</table>
</div><!-- inline-related-->
<div class="button-group">
{% if meeting.frozen == 0 %}
<ul>
<li><button onclick="window.location='{% url 'ietf.secr.proceedings.views.select' meeting_num=meeting.number %}'">Upload Materials</button></li>
<li><button onclick="window.location='convert/'">Convert Materials</button></li>
<li><button onclick="window.location='status/'">Proceedings {{ meeting.number }} Status</button></li>
</ul>
{% endif %}
{% if meeting.frozen == 1 %}
<ul>
<li><button onclick="window.location='status/'">Proceedings {{ meeting.number }} Status</button></li>
</ul>
{% endif %}
</div> <!-- button-group -->
</div> <!-- module -->
{% endblock %}