add templates/includes
- Legacy-Id: 5175
This commit is contained in:
parent
f6e05aff99
commit
f5e0ee9990
23
ietf/secr/templates/includes/activities.html
Normal file
23
ietf/secr/templates/includes/activities.html
Normal file
|
@ -0,0 +1,23 @@
|
|||
<h2>Activies Log</h2>
|
||||
<div class="inline-related last-related">
|
||||
<table class="full-width">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Date</th>
|
||||
<th>Time</th>
|
||||
<th>Action</th>
|
||||
<th>Name</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{% for entry in activities %}
|
||||
<tr class="{% cycle 'row1' 'row2' %}">
|
||||
<td>{{ entry.act_date }}</td>
|
||||
<td>{{ entry.act_time }}</td>
|
||||
<td>{{ entry.activity }}</td>
|
||||
<td>{{ entry.act_by }}</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
</table>
|
||||
</div> <!-- inline-related -->
|
15
ietf/secr/templates/includes/awp_add_form.html
Normal file
15
ietf/secr/templates/includes/awp_add_form.html
Normal file
|
@ -0,0 +1,15 @@
|
|||
<div class="inline-group">
|
||||
<h2>Additional Web Pages</h2>
|
||||
{{ awp_formset.management_form }}
|
||||
{{ awp_formset.non_form_errors }}
|
||||
|
||||
{% for form in awp_formset.forms %}
|
||||
<div class="inline-related{% if forloop.last %} last-related{% endif %}">
|
||||
<h3><b>Web Page:</b> #{{ forloop.counter }}</h3>
|
||||
<table class="awp-form full-width amstable">
|
||||
<col width="150">
|
||||
{{ form.as_table }}
|
||||
</table>
|
||||
</div> <!-- iniline-related -->
|
||||
{% endfor %}
|
||||
</div> <!-- inline-group -->
|
24
ietf/secr/templates/includes/awp_edit_form.html
Normal file
24
ietf/secr/templates/includes/awp_edit_form.html
Normal file
|
@ -0,0 +1,24 @@
|
|||
<h2>Additional Web Pages</h2>
|
||||
{{ awp_formset.management_form }}
|
||||
{{ awp_formset.non_form_errors }}
|
||||
|
||||
{% for form in awp_formset.forms %}
|
||||
<div class="inline-related{% if forloop.last %} last-related{% endif %}">
|
||||
<h3><b>Web Page:</b> #{{ forloop.counter }}
|
||||
{% if awp_formset.can_delete %}<span class="delete">{{ form.DELETE }} Delete</span>{% endif %}
|
||||
</h3>
|
||||
{% if form.non_field_errors %}{{ form.non_field_errors }}{% endif %}
|
||||
<table id="area-awp-table" class="full-width amstable">
|
||||
<col width="150">
|
||||
<tr>
|
||||
<th>URL:</th>
|
||||
<td>{{ form.url.errors }}{{ form.url }}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>Name:</th>
|
||||
<td>{{ form.name.errors }}{{ form.name }}</td>
|
||||
</tr>
|
||||
{{ form.id }}
|
||||
</table>
|
||||
</div> <!-- inline-related -->
|
||||
{% endfor %}
|
13
ietf/secr/templates/includes/awp_view.html
Normal file
13
ietf/secr/templates/includes/awp_view.html
Normal file
|
@ -0,0 +1,13 @@
|
|||
<div class="inline-group">
|
||||
<h2>Additional Web Pages</h2>
|
||||
{% for item in awps %}
|
||||
<div class="inline-related{% if forloop.last %} last-related{% endif %}">
|
||||
<h3><b>Web Page:</b> #{{ forloop.counter }}</h3>
|
||||
<table class="full-width">
|
||||
<col width="150">
|
||||
<tr><td>URL:</td><td>{{ item.url }}</td><tr>
|
||||
<tr><td>Name:</td><td>{{ item.name }}</td></tr>
|
||||
</table>
|
||||
</div> <!-- iniline-related -->
|
||||
{% endfor %}
|
||||
</div> <!-- inline-group -->
|
5
ietf/secr/templates/includes/buttons_back.html
Normal file
5
ietf/secr/templates/includes/buttons_back.html
Normal file
|
@ -0,0 +1,5 @@
|
|||
<div class="button-group">
|
||||
<ul>
|
||||
<li><button onclick="window.location='../'">Back</button></li>
|
||||
</ul>
|
||||
</div> <!-- button-group -->
|
6
ietf/secr/templates/includes/buttons_next_cancel.html
Normal file
6
ietf/secr/templates/includes/buttons_next_cancel.html
Normal file
|
@ -0,0 +1,6 @@
|
|||
<div class="button-group">
|
||||
<ul>
|
||||
<li><button type="submit" name="submit" value="Next">Next</button></li>
|
||||
<li><button type="submit" name="submit" value="Cancel">Cancel</button></li>
|
||||
</ul>
|
||||
</div> <!-- button-group -->
|
5
ietf/secr/templates/includes/buttons_proceed.html
Normal file
5
ietf/secr/templates/includes/buttons_proceed.html
Normal file
|
@ -0,0 +1,5 @@
|
|||
<div class="button-group">
|
||||
<ul>
|
||||
<li><button type="submit" name="submit" value="Proceed">Proceed</button></li>
|
||||
</ul>
|
||||
</div> <!-- button-group -->
|
5
ietf/secr/templates/includes/buttons_save.html
Normal file
5
ietf/secr/templates/includes/buttons_save.html
Normal file
|
@ -0,0 +1,5 @@
|
|||
<div class="button-group">
|
||||
<ul>
|
||||
<li><button type="submit" name="submit" value="Save">Save</button></li>
|
||||
</ul>
|
||||
</div> <!-- button-group -->
|
6
ietf/secr/templates/includes/buttons_save_cancel.html
Normal file
6
ietf/secr/templates/includes/buttons_save_cancel.html
Normal file
|
@ -0,0 +1,6 @@
|
|||
<div class="button-group">
|
||||
<ul>
|
||||
<li><button type="submit" name="submit" value="Save">Save</button></li>
|
||||
<li><button type="submit" name="submit" value="Cancel">Cancel</button></li>
|
||||
</ul>
|
||||
</div> <!-- button-group -->
|
5
ietf/secr/templates/includes/buttons_search.html
Normal file
5
ietf/secr/templates/includes/buttons_search.html
Normal file
|
@ -0,0 +1,5 @@
|
|||
<div class="button-group">
|
||||
<ul>
|
||||
<li><button type="submit" name="submit" value="Search">Search</button></li>
|
||||
</ul>
|
||||
</div> <!-- button-group -->
|
5
ietf/secr/templates/includes/buttons_submit.html
Normal file
5
ietf/secr/templates/includes/buttons_submit.html
Normal file
|
@ -0,0 +1,5 @@
|
|||
<div class="button-group">
|
||||
<ul>
|
||||
<li><button type="submit" name="submit" value="Submit">Submit</button></li>
|
||||
</ul>
|
||||
</div> <!-- button-group -->
|
6
ietf/secr/templates/includes/buttons_submit_back.html
Normal file
6
ietf/secr/templates/includes/buttons_submit_back.html
Normal file
|
@ -0,0 +1,6 @@
|
|||
<div class="button-group">
|
||||
<ul>
|
||||
<li><button type="submit" name="submit" value="Submit">Submit</button></li>
|
||||
<li><button type="submit" name="submit" value="Back">Back</button></li>
|
||||
</ul>
|
||||
</div> <!-- button-group -->
|
6
ietf/secr/templates/includes/buttons_submit_cancel.html
Normal file
6
ietf/secr/templates/includes/buttons_submit_cancel.html
Normal file
|
@ -0,0 +1,6 @@
|
|||
<div class="button-group">
|
||||
<ul>
|
||||
<li><button type="submit" name="submit" value="Submit">Submit</button></li>
|
||||
<li><button type="submit" name="submit" value="Cancel">Cancel</button></li>
|
||||
</ul>
|
||||
</div> <!-- button-group -->
|
25
ietf/secr/templates/includes/docevents.html
Normal file
25
ietf/secr/templates/includes/docevents.html
Normal file
|
@ -0,0 +1,25 @@
|
|||
<h2>Activies Log</h2>
|
||||
<div class="inline-related last-related">
|
||||
<table class="full-width">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Date</th>
|
||||
<th>Time</th>
|
||||
<th>Document</th>
|
||||
<th>Action</th>
|
||||
<th>Name</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{% for entry in docevents %}
|
||||
<tr class="{% cycle 'row1' 'row2' %}">
|
||||
<td>{{ entry.time|date:"M d, Y" }}</td>
|
||||
<td>{{ entry.time|date:"H:i" }}</td>
|
||||
<td>{{ entry.doc }}</td>
|
||||
<td>{{ entry.type }}</td>
|
||||
<td>{{ entry.by }}</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
</table>
|
||||
</div> <!-- inline-related -->
|
20
ietf/secr/templates/includes/draft_search_results.html
Normal file
20
ietf/secr/templates/includes/draft_search_results.html
Normal file
|
@ -0,0 +1,20 @@
|
|||
<table id="draft-search-results" class="center" cellspacing="0">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<th>Group</th>
|
||||
<th>Status</th>
|
||||
<th>Intended Status</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{% for item in results %}
|
||||
<tr class="{% cycle 'row1' 'row2' %}">
|
||||
<td><a href="{% url drafts_view id=item.name %}">{{ item.name }}</a></td>
|
||||
<td>{{item.group.acronym}}</td>
|
||||
<td>{{item.get_state}}</td>
|
||||
<td>{{item.intended_std_level}}</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
</table>
|
11
ietf/secr/templates/includes/draft_upload_form.html
Normal file
11
ietf/secr/templates/includes/draft_upload_form.html
Normal file
|
@ -0,0 +1,11 @@
|
|||
<div class="inline-group add-form">
|
||||
<h2>Files</h2>
|
||||
<table id="draft-file-table" class="full-width amstable">
|
||||
<col width="150">
|
||||
{{ upload_form.non_field_errors }}
|
||||
<tr><th><label for="id_txt">.txt format<span class="required"> *</span></label></th><td>{{ upload_form.txt.errors }}{{ upload_form.txt }}</td></tr>
|
||||
<tr><th><label for="id_xml">.xml format</label></th><td>{{ upload_form.xml.errors }}{{ upload_form.xml }}</td></tr>
|
||||
<tr><th><label for="id_pdf">.pdf format</label></th><td>{{ upload_form.pdf.errors }}{{ upload_form.pdf }}</td></tr>
|
||||
<tr><th><label for="id_ps">.ps format</label></th><td>{{ upload_form.ps.errors }}{{ upload_form.ps }}</td></tr>
|
||||
</table>
|
||||
</div>
|
24
ietf/secr/templates/includes/group_search_results.html
Normal file
24
ietf/secr/templates/includes/group_search_results.html
Normal file
|
@ -0,0 +1,24 @@
|
|||
<table id="group-search-results" class="center" cellspacing="0">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Group Name</th>
|
||||
<th>Group Acronym</th>
|
||||
<th>Status</th>
|
||||
<th>Type</th>
|
||||
<th>Meeting Scheduled</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{% for item in results %}
|
||||
<tr class="{% cycle 'row1' 'row2' %}">
|
||||
<td><a href="{% url groups_view acronym=item.acronym %}">{{item.name}}</a></td>
|
||||
<td>{{item.acronym}}</td>
|
||||
<td>{{item.state}}</td>
|
||||
<td>{{item.type}}</td>
|
||||
<td>{{item.meeting_scheduled}}</td>
|
||||
</tr>
|
||||
{% empty %}
|
||||
<tr><td><b>No Results</b></td></tr>
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
</table>
|
15
ietf/secr/templates/includes/ietf_footer.html
Normal file
15
ietf/secr/templates/includes/ietf_footer.html
Normal file
|
@ -0,0 +1,15 @@
|
|||
<!-- InstanceEndEditable --> </div></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td id="footer1" colspan="2"><div id="footer2">
|
||||
<p><a href="http://www.isoc.org/"><img src="/images/isoc_logo.gif" alt="Internet Society" align="left" border="0" hspace="5" /></a><a href="http://www.amsl.com/"><img src="/images/ams_logo.png" alt="AMS" align="right" border="0" hspace="5" /></a><a href="/">Home</a> - <a href="http://tools.ietf.org/">Tools</a> - <a href="https://datatracker.ietf.org/">Datatracker</a> - <a href="/usagedata/">Web Site Usage Statistics</a> - <a href="http://iaoc.ietf.org/">IASA</a> - <a href="http://www.iab.org/">IAB</a> - <a href="http://www.rfc-editor.org/">RFC Editor</a> - <a href="http://www.iana.org/">IANA</a> - <a href="http://www.irtf.org/">IRTF</a> - <a href="http://trustee.ietf.org/">IETF Trust</a> - <a href="http://www.isoc.org/">ISOC</a> - <a href="/secretariat.html">Contact Us</a><br />
|
||||
Secretariat services provided by <a href="http://www.amsl.com/">Association Management Solutions, LLC (AMS)</a>.<br />
|
||||
Please send problem reports to: <a href="mailto:ietf-action@ietf.org">ietf-action@ietf.org</a>.<br />
|
||||
</p>
|
||||
</div></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</body>
|
||||
<!-- InstanceEnd --></html>
|
75
ietf/secr/templates/includes/ietf_menu.html
Normal file
75
ietf/secr/templates/includes/ietf_menu.html
Normal file
|
@ -0,0 +1,75 @@
|
|||
<table border="0" cellpadding="0" cellspacing="0">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td id="sidebar1"><div id="sidebar2"><a href="/"><img src="/images/ietflogotrans.gif" alt="Logo" height="75" width="140" border="0"/></a>
|
||||
<div style="margin:0;padding:0;white-space: nowrap;">
|
||||
<form method="get" action="http://www.google.com/u/ietf" style="margin:0;padding:0;white-space: nowrap;">
|
||||
<p style="margin:0;padding:0;white-space: nowrap;">
|
||||
<input name="q" size="16" maxlength="255" value="" type="text" style="margin:1px;padding:0;width:100px;border:1px solid #89d;" />
|
||||
<input name="Search" value="Search" type="submit" style="margin:0;padding:0;font-size:85%;" />
|
||||
</p>
|
||||
</form>
|
||||
</div>
|
||||
<ul>
|
||||
<li class="subhdr00"><a class="subhdr00" href="xmpp:hallway@jabber.ietf.org?join"><img src="/images/chat-trans.png" border="0" alt="transparent chat button" /></a></li>
|
||||
<li class="subhdr00"><a class="subhdr00" href="https://www.ietf.org"><strong>Home</strong></a></li>
|
||||
<li class="subhdr00"><a class="subhdr00" href="https://www.ietf.org/about/"><strong>About the IETF</strong></a></li>
|
||||
<li class="subhdr02"><a class="subhdr02" href="https://www.ietf.org/about/mission.html">Mission</a></li>
|
||||
<li class="subhdr02"><a class="subhdr02" href="https://www.ietf.org/about/standards-process.html">Standards Process</a></li>
|
||||
<li class="subhdr02"><a class="subhdr02" href="https://www.ietf.org/about/note-well.html">Note Well</a></li>
|
||||
<li class="subhdr02"><a class="subhdr02" href="https://www.ietf.org/nomcom/">NomCom</a></li>
|
||||
<li class="subhdr02"><a class="subhdr02" href="https://www.ietf.org/newcomers.html">Info for Newcomers</a></li>
|
||||
<li class="subhdr00"><a class="subhdr00" href="https://www.ietf.org/id-info/"><strong>Internet-Drafts</strong></a></li>
|
||||
<li class="subhdr02"><a class="subhdr02" href="https://datatracker.ietf.org/">Datatracker</a></li>
|
||||
<li class="subhdr02"><a class="subhdr02" href="https://datatracker.ietf.org/drafts/">Search</a></li>
|
||||
<li class="subhdr02"><a class="subhdr02" href="https://datatracker.ietf.org/idst/upload.cgi">Submit</a></li>
|
||||
<li class="subhdr00"><a class="subhdr00" href="https://www.ietf.org/rfc.html"><strong>RFC Pages</strong></a></li>
|
||||
<li class="subhdr02"><a class="subhdr02" href="https://rfc-editor.org/rfcsearch.html">Search RFC Ed Index</a></li>
|
||||
<li class="subhdr02"><a class="subhdr02" href="https://www.rfc-editor.org/queue2.html">RFC Editor Queue</a></li>
|
||||
<li class="subhdr00"><a class="subhdr00" href="https://www.ietf.org/iana.html"><strong>IANA Pages</strong></a></li>
|
||||
<li class="subhdr02"><a class="subhdr02" href="https://www.ietf.org/assignments/">Protocol Parameters</a></li>
|
||||
<li class="subhdr00"><a class="subhdr00" href="https://www.ietf.org/wg/"><strong>Working Groups</strong></a></li>
|
||||
<li class="subhdr02"><a class="subhdr02" href="https://www.ietf.org/dyn/wg/charter.html">WG Charters</a></li>
|
||||
<li class="subhdr02"><a class="subhdr02" href="https://datatracker.ietf.org/list/wg/">Email Lists</a></li>
|
||||
<li class="subhdr02"><a class="subhdr02" href="https://www.ietf.org/wg/chairs-page.html">WG Chairs' Page</a></li>
|
||||
<li class="subhdr00"><a class="subhdr00" href="https://www.ietf.org/tools/"><strong>Resources</strong></a></li>
|
||||
<li class="subhdr02"><a class="subhdr02" href="https://www.ietf.org/tools/tools.html">Community Tools</a></li>
|
||||
<li class="subhdr02"><a class="subhdr02" href="http://tools.ietf.org/">Tools Team Pages</a></li>
|
||||
<li class="subhdr02"><a class="subhdr02" href="/edu/">Edu Team Pages</a></li>
|
||||
<li class="subhdr02"><a class="subhdr02" href="/edu/tutorials.html">Tutorials</a></li>
|
||||
<li class="subhdr02"><a class="subhdr02" href="http://wiki.tools.ietf.org/group/">Wikis</a></li>
|
||||
<li class="subhdr00"><a class="subhdr00" href="https://www.ietf.org/meeting/"><strong>Meetings</strong></a></li>
|
||||
<li class="subhdr02"><a class="subhdr02" href="https://www.ietf.org/meeting/upcoming.html">Upcoming Meetings</a></li>
|
||||
<li class="subhdr02"><a class="subhdr02" href="https://www.ietf.org/meeting/interim-meetings.html">Interim Meetings</a></li>
|
||||
<li class="subhdr02"><a class="subhdr02" href="https://www.ietf.org/meeting/cutoff-dates.html">Important Dates</a></li>
|
||||
<li class="subhdr02"><a class="subhdr02" href="https://www.ietf.org/meeting/proceedings.html">Proceedings</a></li>
|
||||
<li class="subhdr00"><a class="subhdr00" href="https://www.ietf.org/list/"><strong>Mailing Lists</strong></a></li>
|
||||
<li class="subhdr02"><a class="subhdr02" href="https://www.ietf.org/list/announcement.html">Announcement Lists</a></li>
|
||||
<li class="subhdr02"><a class="subhdr02" href="https://www.ietf.org/list/discussion.html">Discussion Lists</a></li>
|
||||
<li class="subhdr02"><a class="subhdr02" href="https://www.ietf.org/list/nonwg.html">Non-WG Lists</a></li>
|
||||
<li class="subhdr00"><a class="subhdr00" href="https://www.ietf.org/iesg/"><strong>IESG </strong></a></li>
|
||||
<li class="subhdr02"><a class="subhdr02" href="https://datatracker.ietf.org/iesg/ann/new/">Announcements</a></li>
|
||||
<li class="subhdr02"><a class="subhdr02" href="https://www.ietf.org/iesg/statement.html">Statements</a></li>
|
||||
<li class="subhdr02"><a class="subhdr02" href="https://www.ietf.org/iesg/members.html">Members</a></li>
|
||||
<li class="subhdr02"><a class="subhdr02" href="https://www.ietf.org/iesg/minutes.html">Minutes</a></li>
|
||||
<li class="subhdr00"><a class="subhdr00" href="https://www.ietf.org/ipr/"><strong>IPR</strong></a></li>
|
||||
<li class="subhdr02"><a class="subhdr02" href="https://www.ietf.org/ipr/policy.html">IPR Policy</a></li>
|
||||
<li class="subhdr02"><a class="subhdr02" href="https://www.ietf.org/ipr/file-disclosure">File a Disclosure</a></li>
|
||||
<li class="subhdr02"><a class="subhdr02" href="https://datatracker.ietf.org/ipr/search/">Disclosure Search</a></li>
|
||||
<li class="subhdr00"><a class="subhdr00" href="https://www.ietf.org/liaison/"><strong>Liaisons</strong></a></li>
|
||||
<li class="subhdr02"><a class="subhdr02" href="https://datatracker.ietf.org/liaison/">Liaison Statements</a></li>
|
||||
<li class="subhdr02"><a class="subhdr02" href="https://www.ietf.org/liaison/managers.html">Liaison Managers</a></li>
|
||||
<li class="subhdr00"><a class="subhdr00" href="https://www.ietf.org/contact-the-ietf.html"><strong>Contact</strong></a></li>
|
||||
<li class="subhdr02"><a class="subhdr02" href="https://www.ietf.org/secretariat.html">IETF Secretariat</a><sup>®</sup></li>
|
||||
<li class="subhdr02"><a class="subhdr02" href="https://iaoc.ietf.org/subpoena.html">Legal Matters</a></li>
|
||||
<li class="subhdr02"><a class="subhdr02" href="mailto:webmaster@ietf.org">Report Web Site Errors</a></li>
|
||||
<li class="subhdr00"><strong>Customize View</strong><br />
|
||||
</li>
|
||||
<li class="subhdr01"><a class="subhdr01" href="javascript:setStyle('2');" title="Brief">Brief</a></li>
|
||||
<li class="subhdr01"><a class="subhdr01" href="javascript:setStyle('1');" title="Normal">Normal</a></li>
|
||||
<li class="subhdr01"><a class="subhdr01" href="javascript:setStyle('3');" title="Extended">Extended</a></li>
|
||||
<li class="subhdr01"><a class="subhdr01" href="javascript:setStyle('4');" title="Advanced">Advanced</a></li>
|
||||
<li class="subhdr01"><small>(Requires Javascript)</small></li>
|
||||
</ul>
|
||||
</div></td>
|
||||
<td id="content1"><div id="content2"> <!-- InstanceBeginEditable name="body" -->
|
1
ietf/secr/templates/includes/meetings_footer.html
Executable file
1
ietf/secr/templates/includes/meetings_footer.html
Executable file
|
@ -0,0 +1 @@
|
|||
<li><a href="https://datatracker.ietf.org/meeting/{{ meeting.number }}/agenda.txt" target="_blank">View Agenda</a>.</li>
|
24
ietf/secr/templates/includes/proceeding_area.html
Normal file
24
ietf/secr/templates/includes/proceeding_area.html
Normal file
|
@ -0,0 +1,24 @@
|
|||
{% if set.wg %}
|
||||
<h4>Working Groups</h4>
|
||||
<ul>
|
||||
{% for group in set.wg %}
|
||||
<li><a href="{{ group.proceedings_url }}">{{ group.name }} ({{group.acronym}})</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% endif %}
|
||||
{% if set.bof %}
|
||||
<h4>BoFs</h4>
|
||||
<ul>
|
||||
{% for group in set.bof %}
|
||||
<li><a href="{{ group.proceedings_url }}">{{ group.name }} ({{group.acronym}})</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% endif %}
|
||||
{% if set.ag %}
|
||||
<h4>Area Group</h4>
|
||||
<ul>
|
||||
{% for group in set.ag %}
|
||||
<li><a href="{{ group.proceedings_url }}">{{ group.name }} ({{group.acronym}})</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% endif %}
|
14
ietf/secr/templates/includes/proceeding_footer.html
Normal file
14
ietf/secr/templates/includes/proceeding_footer.html
Normal file
|
@ -0,0 +1,14 @@
|
|||
<tr>
|
||||
<td id="footer1" colspan="2"><div id="footer2">
|
||||
<p><a href="http://www.isoc.org/"><img src="/images/isoc_logo.gif" alt="Internet Society" align="left" border="0" hspace="5" /></a><a href="http://www.amsl.com/"><img src="/images/ams_logo.png" alt="AMS" align="right" border="0" hspace="5" /></a><a href="/">Home</a> - <a href="http://tools.ietf.org/">Tools
|
||||
Team</a> - <a href="https://datatracker.ietf.org/">Datatracker</a> - <a href="/usagedata/">Web Site Usage Statistics</a> - <a href="http://iaoc.ietf.org/">IASA</a> - <a href="http://www.iab.org/">IAB</a> - <a href="http://www.rfc-editor.org/">RFC Editor</a> - <a href="http://www.iana.org/">IANA</a> - <a href="http://www.irtf.org/">IRTF</a> - <a href="http://trustee.ietf.org/">IETF Trust</a> - <a href="http://www.isoc.org/">ISOC</a> - <a href="http://www.cafepress.com/ietf">Store</a> - <a href="/secretariat.html">Contact Us</a><br />
|
||||
Secretariat services provided by <a href="http://www.amsl.com/">Association Management Solutions, LLC (AMS)</a>.<br />
|
||||
Please send problem reports to: <a href="mailto:ietf-action@ietf.org">ietf-action@ietf.org</a>.<br />
|
||||
</p>
|
||||
</div></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
96
ietf/secr/templates/includes/proceeding_header.html
Normal file
96
ietf/secr/templates/includes/proceeding_header.html
Normal file
|
@ -0,0 +1,96 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
||||
<title>IETF Proceedings</title>
|
||||
<script type="text/javascript" language="JavaScript" src="/css/ietf.js"></script>
|
||||
<script type="text/javascript">
|
||||
document.write('<link id="sheet4" href="/css/ietf4.css" rel="stylesheet" type="text/css" />');
|
||||
document.write('<link id="sheet3" href="/css/ietf3.css" rel="stylesheet" type="text/css" />');
|
||||
document.write('<link id="sheet2" href="/css/ietf2.css" rel="stylesheet" type="text/css" />');
|
||||
</script>
|
||||
<link id="sheet1" href="/css/ietf.css" rel="stylesheet" type="text/css" />
|
||||
<style>
|
||||
tr.time-title > td {
|
||||
padding-top: 1em;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body onload="setStyle(0);">
|
||||
<div id="container">
|
||||
<table border="0" cellpadding="0" cellspacing="0">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td id="sidebar1"><div id="sidebar2"><a href="/"><img src="/images/ietflogotrans.gif" alt="Logo" height="75" width="140" border="0"/></a>
|
||||
<div style="margin:0;padding:0;white-space: nowrap;">
|
||||
<form method="get" action="http://www.google.com/u/ietf" style="margin:0;padding:0;white-space: nowrap;">
|
||||
<p style="margin:0;padding:0;white-space: nowrap;">
|
||||
<input name="q" size="16" maxlength="255" value="" type="text" style="margin:1px;padding:0;width:100px;border:1px solid #89d;" />
|
||||
<input name="Search" value="Search" type="submit" style="margin:0;padding:0;font-size:85%;" />
|
||||
</p>
|
||||
</form>
|
||||
</div>
|
||||
<ul>
|
||||
|
||||
<li class="subhdr00"><a class="subhdr00" href="xmpp:hallway@jabber.ietf.org?join"><img src="/images/chat-trans.png" border="0" alt="transparent chat button" /></a></li>
|
||||
<li class="subhdr00"><a class="subhdr00" href="/"><strong>Home</strong></a></li>
|
||||
<li class="subhdr00"><a class="subhdr00" href="/about/"><strong>About the IETF</strong></a></li>
|
||||
<li class="subhdr02"><a class="subhdr02" href="/about/mission.html">Mission</a></li>
|
||||
<li class="subhdr02"><a class="subhdr02" href="/about/standards-process.html">Standards Process</a></li>
|
||||
<li class="subhdr02"><a class="subhdr02" href="/about/note-well.html">Note Well</a></li>
|
||||
<li class="subhdr02"><a class="subhdr02" href="/nomcom/">NomCom</a></li>
|
||||
<li class="subhdr02"><a class="subhdr02" href="/newcomers.html">Info for Newcomers</a></li>
|
||||
<li class="subhdr00"><a class="subhdr00" href="/id-info/"><strong>Internet-Drafts</strong></a></li>
|
||||
<li class="subhdr02"><a class="subhdr02" href="https://datatracker.ietf.org/">Datatracker</a></li>
|
||||
<li class="subhdr02"><a class="subhdr02" href="https://datatracker.ietf.org/drafts/">Search</a></li>
|
||||
<li class="subhdr02"><a class="subhdr02" href="https://datatracker.ietf.org/idst/upload.cgi">Submit</a></li>
|
||||
<li class="subhdr00"><a class="subhdr00" href="/rfc.html"><strong>RFC Pages</strong></a></li>
|
||||
<li class="subhdr02"><a class="subhdr02" href="http://rfc-editor.org/rfcsearch.html">Search RFC Ed Index</a></li>
|
||||
<li class="subhdr02"><a class="subhdr02" href="http://www.rfc-editor.org/queue2.html">RFC Editor Queue</a></li>
|
||||
<li class="subhdr00"><a class="subhdr00" href="/iana.html"><strong>IANA Pages</strong></a></li>
|
||||
<li class="subhdr02"><a class="subhdr02" href="/assignments/">Protocol Parameters</a></li>
|
||||
<li class="subhdr00"><a class="subhdr00" href="/wg/"><strong>Working Groups</strong></a></li>
|
||||
<li class="subhdr02"><a class="subhdr02" href="/dyn/wg/charter.html">WG Charters</a></li>
|
||||
<li class="subhdr02"><a class="subhdr02" href="http://datatracker.ietf.org/list/wg/">Email Lists</a></li>
|
||||
<li class="subhdr02"><a class="subhdr02" href="/wg/chairs-page.html">WG Chairs' Page</a></li>
|
||||
<li class="subhdr00"><a class="subhdr00" href="/tools/"><strong>Resources</strong></a></li>
|
||||
<li class="subhdr02"><a class="subhdr02" href="/tools/tools.html">Community Tools</a></li>
|
||||
<li class="subhdr02"><a class="subhdr02" href="http://tools.ietf.org/">Tools Team Pages</a></li>
|
||||
<li class="subhdr02"><a class="subhdr02" href="/edu/">Edu Team Pages</a></li>
|
||||
<li class="subhdr02"><a class="subhdr02" href="http://wiki.tools.ietf.org/group/">Wikis</a></li>
|
||||
<li class="subhdr00"><a class="subhdr00" href="/meeting/"><strong>Meetings</strong></a></li>
|
||||
<li class="subhdr02"><a class="subhdr02" href="/meeting/upcoming.html">Upcoming Meetings</a></li>
|
||||
<li class="subhdr02"><a class="subhdr02" href="/meeting/past.html">Past Meetings</a></li>
|
||||
<li class="subhdr02"><a class="subhdr02" href="/meeting/interim-meetings.html">Interim Meetings</a></li>
|
||||
<li class="subhdr02"><a class="subhdr02" href="/meeting/cutoff-dates.html">Important Dates</a></li>
|
||||
<li class="subhdr02"><a class="subhdr02" href="/meeting/proceedings.html">Proceedings</a></li>
|
||||
<li class="subhdr00"><a class="subhdr00" href="/list/"><strong>Mailing Lists</strong></a></li>
|
||||
<li class="subhdr02"><a class="subhdr02" href="/list/announcement.html">Announcement Lists</a></li>
|
||||
<li class="subhdr02"><a class="subhdr02" href="/list/discussion.html">Discussion Lists</a></li>
|
||||
<li class="subhdr02"><a class="subhdr02" href="/list/nonwg.html">Non-WG Lists</a></li>
|
||||
<li class="subhdr00"><a class="subhdr00" href="/iesg/"><strong>IESG </strong></a></li>
|
||||
<li class="subhdr02"><a class="subhdr02" href="https://datatracker.ietf.org/iesg/ann/new/">Announcements</a></li>
|
||||
<li class="subhdr02"><a class="subhdr02" href="/iesg/statement.html">Statements</a></li>
|
||||
<li class="subhdr02"><a class="subhdr02" href="/iesg/members.html">Members</a></li>
|
||||
<li class="subhdr02"><a class="subhdr02" href="/iesg/minutes.html">Minutes</a></li>
|
||||
<li class="subhdr00"><a class="subhdr00" href="/ipr/"><strong>IPR</strong></a></li>
|
||||
<li class="subhdr02"><a class="subhdr02" href="/ipr/policy.html">IPR Policy</a></li>
|
||||
<li class="subhdr02"><a class="subhdr02" href="/ipr/file-disclosure">File a Disclosure</a></li>
|
||||
<li class="subhdr02"><a class="subhdr02" href="https://datatracker.ietf.org/ipr/search/">Disclosure Search</a></li>
|
||||
<li class="subhdr00"><a class="subhdr00" href="/liaison/"><strong>Liaisons</strong></a></li>
|
||||
<li class="subhdr02"><a class="subhdr02" href="https://datatracker.ietf.org/liaison/">Liaison Statements</a></li>
|
||||
<li class="subhdr02"><a class="subhdr02" href="/liaison/managers.html">Liaison Managers</a></li>
|
||||
<li class="subhdr00"><a class="subhdr00" href="/contact-the-ietf.html"><strong>Contact</strong></a></li>
|
||||
<li class="subhdr02"><a class="subhdr02" href="/secretariat.html">IETF Secretariat</a><sup>®</sup></li>
|
||||
<li class="subhdr02"><a class="subhdr02" href="http://iaoc.ietf.org/legalmatters.html">Legal Matters</a></li>
|
||||
<li class="subhdr02"><a class="subhdr02" href="mailto:webmaster@ietf.org">Report Web Site Errors</a></li>
|
||||
<li class="subhdr00"><strong>Customize View</strong><br />
|
||||
</li>
|
||||
<li class="subhdr01"><a class="subhdr01" href="javascript:setStyle('2');" title="Brief">Brief</a></li>
|
||||
<li class="subhdr01"><a class="subhdr01" href="javascript:setStyle('1');" title="Normal">Normal</a></li>
|
||||
<li class="subhdr01"><a class="subhdr01" href="javascript:setStyle('3');" title="Extended">Extended</a></li>
|
||||
<li class="subhdr01"><a class="subhdr01" href="javascript:setStyle('4');" title="Advanced">Advanced</a></li>
|
||||
<li class="subhdr01"><small>(Requires Javascript)</small></li>
|
||||
</ul>
|
||||
</div></td>
|
||||
|
2
ietf/secr/templates/includes/proceeding_title.html
Normal file
2
ietf/secr/templates/includes/proceeding_title.html
Normal file
|
@ -0,0 +1,2 @@
|
|||
<p class="ptitle">IETF {{ meeting.number }} Proceedings</p>
|
||||
<p><a href="index.html#intro">Introduction</a> | <a href="index.html#wgreports">Area, Working Goup & BoF Reports</a> | <a href="index.html#plenary">Plenaries</a> | <a href="index.html#training">Training</a> | <a href="index.html#irtf">Internet Research Task Force</a></p>
|
26
ietf/secr/templates/includes/proceedings_functions.html
Normal file
26
ietf/secr/templates/includes/proceedings_functions.html
Normal file
|
@ -0,0 +1,26 @@
|
|||
|
||||
<p>Use this to generate official proceedings for the selected meeting.</p>
|
||||
<ul class="none">
|
||||
<li>
|
||||
<button id="generate-button">Generate Proceedings</button>
|
||||
Last run:
|
||||
{% if last_run %}
|
||||
{{ last_run|date:"M d, Y H:i" }} <a href="{{ proceedings_url }}">Proceedings</a>
|
||||
{% else %}
|
||||
Never
|
||||
{% endif %}
|
||||
</li>
|
||||
</ul>
|
||||
<p>Use this to process meeting materials files that have been converted to PDF and uploaded to the server.</p>
|
||||
<ul class="none">
|
||||
<li>
|
||||
<button onclick="window.location='{% url proceedings_process_pdfs meeting_num=meeting.number %}'">Process PDFs</button>
|
||||
<span class="{% if ppt_count > 0 %}alert{% endif %}">{{ ppt_count }} PowerPoint files waiting to be converted</span>
|
||||
</li>
|
||||
</ul>
|
||||
<p>Use this to generate the progress report for the plenary.</p>
|
||||
<ul class="none">
|
||||
<li><button onclick="window.location='{% url proceedings_progress_report meeting_num=meeting.number %}'">Generate Progress Report</button>
|
||||
<a href="{{ MEDIA_URL }}/proceedings/{{ meeting.number }}/progress-report.html">Progress Report</a>
|
||||
</li>
|
||||
</ul>
|
20
ietf/secr/templates/includes/search_results_table.html
Normal file
20
ietf/secr/templates/includes/search_results_table.html
Normal file
|
@ -0,0 +1,20 @@
|
|||
<table class="full-width">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<th>Company</th>
|
||||
<th>Email</th>
|
||||
<th>ID</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{% for item in results %}
|
||||
<tr class="{% cycle 'row1' 'row2' %}">
|
||||
<td><a href="{% url rolodex_view id=item.person.id %}">{{item.name}}</a></td>
|
||||
<td>{{item.person.affiliation}}</td>
|
||||
<td>{{item.person.email_address}}</td>
|
||||
<td>{{item.person.id}}</a></td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
</table>
|
18
ietf/secr/templates/includes/session_info.txt
Normal file
18
ietf/secr/templates/includes/session_info.txt
Normal file
|
@ -0,0 +1,18 @@
|
|||
{% load ams_filters %}
|
||||
---------------------------------------------------------
|
||||
Working Group Name: {{ group.name }}
|
||||
Area Name: {{ group.parent }}
|
||||
Session Requester: {{ login }}
|
||||
|
||||
Number of Sessions: {{ session.num_session }}
|
||||
Length of Session(s): {{ session.length_session1|display_duration }}{% if session.length_session2 %}, {{ session.length_session2|display_duration }}{% endif %}{% if session.length_session3 %}, {{ session.length_session3|display_duration }}{% endif %}
|
||||
Number of Attendees: {{ session.attendees }}
|
||||
Conflicts to Avoid:
|
||||
{% if session.conflict1 %} First Priority: {{ session.conflict1 }}{% endif %}
|
||||
{% if session.conflict2 %} Second Priority: {{ session.conflict2 }}{% endif %}
|
||||
{% if session.conflict3 %} Third Priority: {{ session.conflict3 }}{% endif %}
|
||||
|
||||
|
||||
Special Requests:
|
||||
{{ session.comments }}
|
||||
---------------------------------------------------------
|
4
ietf/secr/templates/includes/sessions_footer.html
Executable file
4
ietf/secr/templates/includes/sessions_footer.html
Executable file
|
@ -0,0 +1,4 @@
|
|||
<li><a href="http://www.ietf.org/wg/request-tool-instructions.html" target="_blank">Instructions</a>.</li>
|
||||
<li><a href="{% url proceedings %}">IETF Meeting Materials Management Tool</a>.</li>
|
||||
<li>If you require assistance in using this tool, or wish to report a bug, then please send a message to <a href="mailto:ietf-action@ietf.org">ietf-action@ietf.org</a>.</li>
|
||||
<li>To submit your request via email, please send your request to <a href="mailto:agenda@ietf.org">agenda@ietf.org</a>.</li>
|
61
ietf/secr/templates/includes/sessions_request_form.1_2
Executable file
61
ietf/secr/templates/includes/sessions_request_form.1_2
Executable file
|
@ -0,0 +1,61 @@
|
|||
<span class="required">*</span> Required Field
|
||||
<form id="session-request-form" action="." method="POST" name="form_post">
|
||||
{% if form.non_field_errors %}{{ form.non_field_errors }}{% endif %}
|
||||
<table id="sessions-new-table" cellspacing="1" cellpadding="1" border="0">
|
||||
<col width="150">
|
||||
<tr class="bg1"><td>Working Group Name:</td><td>{{ group.group_name }} ({{ group.group_acronym }})</td></tr>
|
||||
<tr class="bg2"><td>Area Name:</td><td>{% if group.area_name %}{{ group.area_name }} ({{ group.area_acronym }}){% endif %}</td></tr>
|
||||
<tr class="bg1"><td>Number of Sessions:<span class="required">*</span></td><td>{{ form.num_session.errors }}{{ form.num_session }}</td></tr>
|
||||
<tr class="bg2"><td>Length of Session 1:<span class="required">*</span></td><td>{{ form.length_session1.errors }}{{ form.length_session1 }}</td></tr>
|
||||
<tr class="bg2"><td>Length of Session 2:<span class="required">*</span></td><td>{{ form.length_session2.errors }}{{ form.length_session2 }}</td></tr>
|
||||
{% if not group.irtf_id and group.group_type.pk != 4 %}
|
||||
<tr class="bg2"><td>Additional Session Request:</td><td>{{ form.third_session }} Check this box to request an additional session.<br>
|
||||
Additional slot may be available after agenda scheduling has closed and with the approval of an Area Director.<br>
|
||||
Length of Third Session: {{ form.length_session3.errors }}{{ form.length_session3 }}</td></tr>
|
||||
{% endif %}
|
||||
<tr class="bg1"><td>Number of Attendees:<span class="required">*</span></td><td>{{ form.number_attendee.errors }}{{ form.number_attendee }}</td></tr>
|
||||
<tr class="bg2"><td>Conflicts to Avoid:</td>
|
||||
<td>
|
||||
<table>
|
||||
<tr>
|
||||
<td colspan="2">Other WGs that included {{ group_name }} in their conflict lists:</td>
|
||||
<td>{{ session_conflicts }}</td>
|
||||
</tr>
|
||||
<tr class="bg1">
|
||||
<td rowspan="3" valign="top" width="220">WG Sessions:<br>You may select multiple WGs within each priority</td>
|
||||
<td width="320">First Priority:</td>
|
||||
<td>{{ form.wg_selector1 }}
|
||||
<input type="button" value="Delete the last entry" onClick="delete_last1(); return handleconflictfield(1);"><br>
|
||||
{{ form.conflict1.errors }}{{ form.conflict1 }}
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="bg1">
|
||||
<td>Second Priority:</td>
|
||||
<td>{{ form.wg_selector2 }}
|
||||
<input type="button" value="Delete the last entry" onClick="delete_last2(); return handleconflictfield(2);"><br>
|
||||
{{ form.conflict2.errors }}{{ form.conflict2 }}
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="bg1">
|
||||
<td>Third Priority:</td>
|
||||
<td>{{ form.wg_selector3 }}
|
||||
<input type="button" value="Delete the last entry" onClick="delete_last3(); return handleconflictfield(3);"><br>
|
||||
{{ form.conflict3.errors }}{{ form.conflict3 }}
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2">BOF or IRTF Sessions:<br>(Please enter free-form text)</td>
|
||||
<td>{{ form.conflict_other.errors }}{{ form.conflict_other }}</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr bgcolor="#cccccc">
|
||||
<td valign="top">Special Requests:<br /> <br />i.e. WebEx (state reason needed), restrictions on meeting times/days, etc.</td>
|
||||
<td>{{ form.special_req.errors }}{{ form.special_req }}</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
{% include "includes/buttons_save_cancel.html" %}
|
||||
|
||||
</form>
|
61
ietf/secr/templates/includes/sessions_request_form.html
Executable file
61
ietf/secr/templates/includes/sessions_request_form.html
Executable file
|
@ -0,0 +1,61 @@
|
|||
<span class="required">*</span> Required Field
|
||||
<form id="session-request-form" action="." method="POST" name="form_post">
|
||||
{% if form.non_field_errors %}{{ form.non_field_errors }}{% endif %}
|
||||
<table id="sessions-new-table" cellspacing="1" cellpadding="1" border="0">
|
||||
<col width="150">
|
||||
<tr class="bg1"><td>Working Group Name:</td><td>{{ group.name }} ({{ group.acronym }})</td></tr>
|
||||
<tr class="bg2"><td>Area Name:</td><td>{% if group.parent %}{{ group.parent.name }} ({{ group.parent.acronym }}){% endif %}</td></tr>
|
||||
<tr class="bg1"><td>Number of Sessions:<span class="required">*</span></td><td>{{ form.num_session.errors }}{{ form.num_session }}</td></tr>
|
||||
<tr class="bg2"><td>Length of Session 1:<span class="required">*</span></td><td>{{ form.length_session1.errors }}{{ form.length_session1 }}</td></tr>
|
||||
<tr class="bg2"><td>Length of Session 2:<span class="required">*</span></td><td>{{ form.length_session2.errors }}{{ form.length_session2 }}</td></tr>
|
||||
{% ifequal group.type.slug "wg" %}
|
||||
<tr class="bg2"><td>Additional Session Request:</td><td>{{ form.third_session }} Check this box to request an additional session.<br>
|
||||
Additional slot may be available after agenda scheduling has closed and with the approval of an Area Director.<br>
|
||||
Length of Third Session: {{ form.length_session3.errors }}{{ form.length_session3 }}</td></tr>
|
||||
{% endifequal %}
|
||||
<tr class="bg1"><td>Number of Attendees:<span class="required">*</span></td><td>{{ form.attendees.errors }}{{ form.attendees }}</td></tr>
|
||||
<tr class="bg2"><td>Conflicts to Avoid:</td>
|
||||
<td>
|
||||
<table>
|
||||
<tr>
|
||||
<td colspan="2">Other WGs that included {{ group.name }} in their conflict lists:</td>
|
||||
<td>{{ session_conflicts }}</td>
|
||||
</tr>
|
||||
<tr class="bg1">
|
||||
<td rowspan="3" valign="top" width="220">WG Sessions:<br>You may select multiple WGs within each priority</td>
|
||||
<td width="320">First Priority:</td>
|
||||
<td>{{ form.wg_selector1 }}
|
||||
<input type="button" value="Delete the last entry" onClick="delete_last1(); return handleconflictfield(1);"><br>
|
||||
{{ form.conflict1.errors }}{{ form.conflict1 }}
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="bg1">
|
||||
<td>Second Priority:</td>
|
||||
<td>{{ form.wg_selector2 }}
|
||||
<input type="button" value="Delete the last entry" onClick="delete_last2(); return handleconflictfield(2);"><br>
|
||||
{{ form.conflict2.errors }}{{ form.conflict2 }}
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="bg1">
|
||||
<td>Third Priority:</td>
|
||||
<td>{{ form.wg_selector3 }}
|
||||
<input type="button" value="Delete the last entry" onClick="delete_last3(); return handleconflictfield(3);"><br>
|
||||
{{ form.conflict3.errors }}{{ form.conflict3 }}
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2">BOF or IRTF Sessions:</td>
|
||||
<td>Please enter free form requests in the Special Requests field below.</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr bgcolor="#cccccc">
|
||||
<td valign="top">Special Requests:<br /> <br />i.e. Meetecho, WebEx (please state which, and the reason needed), restrictions on meeting times / days, etc.</td>
|
||||
<td>{{ form.comments.errors }}{{ form.comments }}</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
{% include "includes/buttons_save_cancel.html" %}
|
||||
|
||||
</form>
|
32
ietf/secr/templates/includes/sessions_request_view.html
Normal file
32
ietf/secr/templates/includes/sessions_request_view.html
Normal file
|
@ -0,0 +1,32 @@
|
|||
{% load ams_filters %}
|
||||
<table class="full-width">
|
||||
<col width="200">
|
||||
<tr class="row1"><td>Working Group Name:</td><td>{{ group.name }} ({{ group.acronym }})</td></tr>
|
||||
<tr class="row2"><td>Area Name:</td><td>{{ group.parent }}</td></tr>
|
||||
<tr class="row1"><td>Number of Sessions Requested:</td><td>{% if session.length_session3 %}3{% else %}{{ session.num_session }}{% endif %}</td></tr>
|
||||
<tr class="row2"><td>Length of Session 1:</td><td>{{ session.length_session1|display_duration }}</td></tr>
|
||||
{% if session.length_session2 %}
|
||||
<tr class="row2"><td>Length of Session 2:</td><td>{{ session.length_session2|display_duration }}</td></tr>
|
||||
{% endif %}
|
||||
{% if session.length_session3 %}
|
||||
<tr class="row2"><td>Length of Session 3:</td><td>{{ session.length_session3|display_duration }}</td></tr>
|
||||
{% endif %}
|
||||
<tr class="row1"><td>Number of Attendees:</td><td>{{ session.attendees }}</td></tr>
|
||||
<tr class="row2">
|
||||
<td>Conflicts to Avoid:</td>
|
||||
<td>
|
||||
<table>
|
||||
{% if session.conflict1 %}<tr><td>First Priority: </td><td>{{ session.conflict1 }}</td></tr>{% endif %}
|
||||
{% if session.conflict2 %}<tr><td>Second Priority: </td><td>{{ session.conflict2 }}</td></tr>{% endif %}
|
||||
{% if session.conflict3 %}<tr><td>Third Priority: </td><td>{{ session.conflict3 }}</td></tr>{% endif %}
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="row1">
|
||||
<td>Other WGs that included {{ group }} in their conflict list:</td>
|
||||
<td>{% if session_conflicts %}{{ session_conflicts }}{% else %}<i>None so far</i>{% endif %}</td>
|
||||
</tr>
|
||||
{% autoescape off %}
|
||||
<tr class="row2"><td>Special Requests:</td><td>{{ session.comments }}</td></tr>
|
||||
{% endautoescape %}
|
||||
</table>
|
25
ietf/secr/templates/includes/slides.html
Normal file
25
ietf/secr/templates/includes/slides.html
Normal file
|
@ -0,0 +1,25 @@
|
|||
{% load ams_filters %}
|
||||
|
||||
<table id="slides" class="center sortable" cellspacing="0">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Slide</th>
|
||||
<th>Filename</th>
|
||||
<th>Edit</th>
|
||||
<th>Replace</th>
|
||||
<th>Delete</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{% for slide in slides %}
|
||||
<tr id="slide_{{ forloop.counter }}" class="{% cycle 'row1' 'row2' %}">
|
||||
<td><span class="ui-icon ui-icon-arrowthick-2-n-s"></span><a href="{{ slide.get_absolute_url }}" target="_blank">{{ slide.title }}</a></td>
|
||||
<td>{{ slide.external_url }}{% if slide.external_url|is_ppt %}<span class="required"> *</span>{% endif %}</td>
|
||||
<td><a href="{% url proceedings_edit_slide slide_id=slide.pk %}">Edit</a></td>
|
||||
<td><a href="{% url proceedings_replace_slide slide_id=slide.pk %}">Replace</a></td>
|
||||
<td><a href="{% url proceedings_delete_material slide_id=slide.name %}">Delete</a></td>
|
||||
<td class="hidden">{{ slide.pk }}</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
</table>
|
3
ietf/secr/templates/includes/upload_footer.html
Executable file
3
ietf/secr/templates/includes/upload_footer.html
Executable file
|
@ -0,0 +1,3 @@
|
|||
<li><a href="http://www.ietf.org/instructions/meeting_materials_tool.html" target="_blank">Instructions</a>.</li>
|
||||
<li>If you require assistance in using this tool, or wish to report a bug, then please send a message to <a href="mailto:ietf-action@ietf.org">ietf-action@ietf.org</a>.</li>
|
||||
<li>To submit your materials via email, please send agendas to <a href="mailto:agenda@ietf.org">agenda@ietf.org</a> and minutes/presentation slides to <a href="mailto:proceedings@ietf.org">proceedings@ietf.org</a>.</li>
|
Loading…
Reference in a new issue