Rewrite url tags in Secretariat templates to new syntax
- Legacy-Id: 6936
This commit is contained in:
parent
7aa3737c3b
commit
0c2c5a7573
|
@ -25,7 +25,7 @@
|
|||
<tbody>
|
||||
{% for item in results %}
|
||||
<tr class="{% cycle 'row1' 'row2' %} {{ item.state|lower }}">
|
||||
<td><a href="{% url areas_view name=item.acronym %}">{{ item.name }}</a></td>
|
||||
<td><a href="{% url "areas_view" name=item.acronym %}">{{ item.name }}</a></td>
|
||||
<td>{{ item.acronym }}</td>
|
||||
<td>{{ item.state }}</td>
|
||||
</tr>
|
||||
|
|
|
@ -30,7 +30,7 @@
|
|||
<h2>Directors</h2>
|
||||
<table class="full-width">
|
||||
{% for director in directors %}
|
||||
<tr><td><a href="{% url rolodex_view id=director.person.id %}">{{ director.person.name }}</a>{% if director.name.slug == "pre-ad" %} (Incoming){% endif %}</td></tr>
|
||||
<tr><td><a href="{% url "rolodex_view" id=director.person.id %}">{{ director.person.name }}</a>{% if director.name.slug == "pre-ad" %} (Incoming){% endif %}</td></tr>
|
||||
{% endfor %}
|
||||
</table>
|
||||
</div> <!-- inline-group -->
|
||||
|
@ -44,7 +44,7 @@
|
|||
<!-- <li><button onclick="window.location='../../'">Back</button></li> -->
|
||||
<li><button onclick="window.location='edit/'">Edit</button></li>
|
||||
<li><button onclick="window.location='people/'">People</button></li>
|
||||
<li><button onclick="window.location='{% url groups_search %}?primary_area={{ area.id }}'">Groups</button></li>
|
||||
<li><button onclick="window.location='{% url "groups_search" %}?primary_area={{ area.id }}'">Groups</button></li>
|
||||
</ul>
|
||||
</div> <!-- button-group -->
|
||||
</div> <!-- module -->
|
||||
|
|
|
@ -34,7 +34,7 @@
|
|||
<td>{{ author.author.person }}</td>
|
||||
<td>{{ author.author }}</td>
|
||||
<td>{{ author.order }}</td>
|
||||
<td><a href="{% url drafts_author_delete id=draft.pk oid=author.id %}">Delete</a></td>
|
||||
<td><a href="{% url "drafts_author_delete" id=draft.pk oid=author.id %}">Delete</a></td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
|
|
|
@ -53,7 +53,7 @@
|
|||
<h2>Author(s)</h2>
|
||||
<table>
|
||||
{% for author in draft.authors.all %}
|
||||
<tr><td><a href="{% url sec.rolodex.views.view id=author.person.pk %}">{{ author.person.name }}</a></td></tr>
|
||||
<tr><td><a href="{% url "sec.rolodex.views.view" id=author.person.pk %}">{{ author.person.name }}</a></td></tr>
|
||||
{% endfor %}
|
||||
</table>
|
||||
</div> <!-- inline-related -->
|
||||
|
|
|
@ -20,8 +20,8 @@
|
|||
<h2>Draft - View</h2>
|
||||
<table class="full-width">
|
||||
<tr><td>Document Name:</td><td>{{ draft.title }}</td></tr>
|
||||
<tr><td>Area:</td><td>{% if draft.group.parent %}<a href="{% url areas_view name=draft.group.parent.acronym %}">{{ draft.group.parent }}{% endif %}</td></tr>
|
||||
<tr><td>Group:</td><td>{% if draft.group %}<a href="{% url groups_view acronym=draft.group.acronym %}">{{ draft.group.acronym }}{% endif %}</td></tr>
|
||||
<tr><td>Area:</td><td>{% if draft.group.parent %}<a href="{% url "areas_view" name=draft.group.parent.acronym %}">{{ draft.group.parent }}{% endif %}</td></tr>
|
||||
<tr><td>Group:</td><td>{% if draft.group %}<a href="{% url "groups_view" acronym=draft.group.acronym %}">{{ draft.group.acronym }}{% endif %}</td></tr>
|
||||
<tr><td>Area Director:</td><td>{{ draft.ad }}</td></tr>
|
||||
<tr><td>Shepherd:</td><td>{{ draft.shepherd }}</td></tr>
|
||||
<tr><td>Notify:</td><td>{{ draft.notify }}</td></tr>
|
||||
|
@ -48,15 +48,15 @@
|
|||
<tr><td>Start Date:</td><td>{{ draft.start_date }}</td></tr>
|
||||
<tr><td>Number of Pages:</td><td>{{ draft.pages }}</td></tr>
|
||||
{% comment %}<tr><td>Local Path:</td><td>/ftp/internet-drafts/{{ draft.local_path|default_if_none:"" }}</td></tr>{% endcomment %}
|
||||
<tr><td>Abstract:</td><td><a href="{% url drafts_abstract id=draft.name %}">Click here to view the abstract</td></tr>
|
||||
<tr><td>Abstract:</td><td><a href="{% url "drafts_abstract" id=draft.name %}">Click here to view the abstract</td></tr>
|
||||
<tr><td>Expiration Date:</td><td>{{ draft.expires|date:"M. d, Y" }}</td></tr>
|
||||
<tr><td>Intended Status:</td><td>{{ draft.intended_std_level|default_if_none:"" }}</td></tr>
|
||||
<tr><td>Standardization Level:</td><td>{{ draft.std_level|default_if_none:"" }}</td></tr>
|
||||
<tr><td>RFC Number:</td><td>{{ draft.rfc_number|default_if_none:"" }}</td></tr>
|
||||
<tr><td>Comments:</td><td>{{ draft.internal_comments|default_if_none:"" }}</td></tr>
|
||||
<tr><td>Last Modified Date:</td><td>{{ draft.time }}</td></tr>
|
||||
<tr><td>Replaced by:</td><td>{% if draft.replaced_by %}<a href="{% url drafts_view id=draft.replaced_by.name %}">{{ draft.replaced_by.name }}{% endif %}</td></tr>
|
||||
<tr><td>Related Documents:</td><td>{% for item in draft.relateddocument_set.all %}{% if not forloop.first %}, {% endif %}{{ item.relationship }} <a href="{% url drafts_view id=item.target.document.pk %}">{{ item.target.name }}</a>{% endfor %}</td></tr>
|
||||
<tr><td>Replaced by:</td><td>{% if draft.replaced_by %}<a href="{% url "drafts_view" id=draft.replaced_by.name %}">{{ draft.replaced_by.name }}{% endif %}</td></tr>
|
||||
<tr><td>Related Documents:</td><td>{% for item in draft.relateddocument_set.all %}{% if not forloop.first %}, {% endif %}{{ item.relationship }} <a href="{% url "drafts_view" id=item.target.document.pk %}">{{ item.target.name }}</a>{% endfor %}</td></tr>
|
||||
<tr><td>Tags:</td>
|
||||
<td>{% for tag in draft.tags.all %}
|
||||
{% if not forloop.first %}, {% endif %}
|
||||
|
@ -72,7 +72,7 @@
|
|||
<h2>Author(s)</h2>
|
||||
<table class="full-width">
|
||||
{% for author in draft.documentauthor_set.all %}
|
||||
<tr><td><a href="{% url rolodex_view id=author.author.person.id %}">{{ author.author.person.name }}</a></td></tr>
|
||||
<tr><td><a href="{% url "rolodex_view" id=author.author.person.id %}">{{ author.author.person.name }}</a></td></tr>
|
||||
{% endfor %}
|
||||
</table>
|
||||
</div> <!-- inline-related -->
|
||||
|
@ -96,8 +96,8 @@
|
|||
<li><button onclick="window.location='edit/'">Edit</button></li>
|
||||
<li><button onclick="window.location='authors/'">Authors</button></li>
|
||||
{% comment %}
|
||||
<li><button onclick="window.location='{% url sec.ids.views.search id=group.group_acronym.acronym_id %}'">Drafts</button></li>
|
||||
<li><button onclick="window.location='{% url sec.rfcs.views.search id=group.group_acronym.acronym_id %}'">RFCs</button></li>
|
||||
<li><button onclick="window.location='{% url "sec.ids.views.search" id=group.group_acronym.acronym_id %}'">Drafts</button></li>
|
||||
<li><button onclick="window.location='{% url "sec.rfcs.views.search" id=group.group_acronym.acronym_id %}'">RFCs</button></li>
|
||||
{% endcomment %}
|
||||
</ul>
|
||||
</div> <!-- button-group -->
|
||||
|
|
|
@ -34,7 +34,7 @@
|
|||
<td>{{ role.name }}</td>
|
||||
<td>{{ role.person }}</td>
|
||||
<td>{{ role.email }}</td>
|
||||
<td><a href="{% url groups_delete_role acronym=group.acronym id=role.id %}">Delete</a></td>
|
||||
<td><a href="{% url "groups_delete_role" acronym=group.acronym id=role.id %}">Delete</a></td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
|
|
|
@ -32,20 +32,20 @@
|
|||
{% endcomment %}
|
||||
<tr><td>Primary Area:</td>
|
||||
<td>{% if not group.parent %}(No Data){% else %}
|
||||
<a href="{% url areas_view name=group.parent.acronym %}">{{ group.parent }}</a>
|
||||
<a href="{% url "areas_view" name=group.parent.acronym %}">{{ group.parent }}</a>
|
||||
{% endif %}
|
||||
</td>
|
||||
</tr>
|
||||
<tr><td>Primary Area Director:</td>
|
||||
<td>{% if group.ad %}
|
||||
<a href="{% url rolodex_view id=group.ad.id %}">{{ group.ad }}</a>
|
||||
<a href="{% url "rolodex_view" id=group.ad.id %}">{{ group.ad }}</a>
|
||||
{% endif %}
|
||||
</td></tr>
|
||||
<tr><td>Meeting Scheduled:</td><td>{{ group.meeting_scheduled}}</td></tr>
|
||||
<tr><td>Email Address:</td><td>{{ group.list_email }}</td></tr>
|
||||
<tr><td>Email Subscription:</td><td>{{ group.list_subscribe }}</td></tr>
|
||||
<tr><td>Email Archive:</td><td>{{ group.list_archive }}</td></tr>
|
||||
<tr><td>Charter:</td><td><a href="{% url groups_charter acronym=group.acronym %}">View Charter</a></td></tr>
|
||||
<tr><td>Charter:</td><td><a href="{% url "groups_charter" acronym=group.acronym %}">View Charter</a></td></tr>
|
||||
<tr><td>Comments:</td><td>{{ group.comments }}</td></tr>
|
||||
<tr><td>Last Modified Date:</td><td>{{ group.time }}</td></tr>
|
||||
</table>
|
||||
|
@ -60,7 +60,7 @@
|
|||
<h2>Chairperson(s)</h2>
|
||||
<table>
|
||||
{% for role in group.chairs %}
|
||||
<tr><td><a href="{% url rolodex_view id=role.person.id %}">{{ role.person }}</a></td></tr>
|
||||
<tr><td><a href="{% url "rolodex_view" id=role.person.id %}">{{ role.person }}</a></td></tr>
|
||||
{% endfor %}
|
||||
</table>
|
||||
</div> <!-- inline-related -->
|
||||
|
@ -69,7 +69,7 @@
|
|||
<h2>Document Editor(s)</h2>
|
||||
<table>
|
||||
{% for role in group.editors %}
|
||||
<tr><td><a href="{% url rolodex_view id=role.person.id %}">{{ role.person }}</a></td></tr>
|
||||
<tr><td><a href="{% url "rolodex_view" id=role.person.id %}">{{ role.person }}</a></td></tr>
|
||||
{% endfor %}
|
||||
</table>
|
||||
</div> <!-- inline-related -->
|
||||
|
@ -78,7 +78,7 @@
|
|||
<h2>Technical Advisor(s)</h2>
|
||||
<table>
|
||||
{% for role in group.techadvisors %}
|
||||
<tr><td><a href="{% url rolodex_view id=role.person.id %}">{{ role.person }}</a></td></tr>
|
||||
<tr><td><a href="{% url "rolodex_view" id=role.person.id %}">{{ role.person }}</a></td></tr>
|
||||
{% endfor %}
|
||||
</table>
|
||||
</div> <!-- inline-related -->
|
||||
|
@ -87,7 +87,7 @@
|
|||
<h2>Secretary(ies)</h2>
|
||||
<table>
|
||||
{% for role in group.secretaries %}
|
||||
<tr><td><a href="{% url rolodex_view id=role.person.id %}">{{ role.person }}</a></td></tr>
|
||||
<tr><td><a href="{% url "rolodex_view" id=role.person.id %}">{{ role.person }}</a></td></tr>
|
||||
{% endfor %}
|
||||
</table>
|
||||
</div> <!-- inline-related -->
|
||||
|
@ -100,8 +100,8 @@
|
|||
<li><button onclick="window.location='people/'">People</button></li>
|
||||
<li><button onclick="window.location='gm/'">G + M</button></li>
|
||||
{% comment %}
|
||||
<li><button onclick="window.location='{% url sec.ids.views.search id=group.group_acronym.acronym_id %}'">Drafts</button></li>
|
||||
<li><button onclick="window.location='{% url sec.rfcs.views.search id=group.group_acronym.acronym_id %}'">RFCs</button></li>
|
||||
<li><button onclick="window.location='{% url "sec.ids.views.search" id=group.group_acronym.acronym_id %}'">Drafts</button></li>
|
||||
<li><button onclick="window.location='{% url "sec.rfcs.views.search" id=group.group_acronym.acronym_id %}'">RFCs</button></li>
|
||||
{% endcomment %}
|
||||
</ul>
|
||||
</div> <!-- button-group -->
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<tbody>
|
||||
{% for item in results %}
|
||||
<tr class="{% cycle 'row1' 'row2' %}">
|
||||
<td><a href="{% url drafts_view id=item.name %}">{{ item.name }}</a></td>
|
||||
<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>
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
<tbody>
|
||||
{% for item in results %}
|
||||
<tr class="{% cycle 'row1' 'row2' %}">
|
||||
<td><a href="{% url groups_view acronym=item.acronym %}">{{item.name}}</a></td>
|
||||
<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>
|
||||
|
|
|
@ -14,13 +14,13 @@
|
|||
<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>
|
||||
<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>
|
||||
<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>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<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><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>
|
||||
|
|
|
@ -1,4 +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><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>
|
||||
|
|
|
@ -15,9 +15,9 @@
|
|||
<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><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 %}
|
||||
|
|
|
@ -55,15 +55,15 @@ $(function() {
|
|||
});
|
||||
}
|
||||
|
||||
setup_ajax($("#id_rfc_num"), $("#rfc_num_list"), $("#id_rfc_num_search"), "{% url ipradmin_ajax_rfc_num %}");
|
||||
setup_ajax($("#id_id_filename"), $("#id_filename_list"), $("#id_id_filename_search"), "{% url ipradmin_ajax_internet_draft %}");
|
||||
setup_ajax($("#id_rfc_num"), $("#rfc_num_list"), $("#id_rfc_num_search"), "{% url "ipradmin_ajax_rfc_num" %}");
|
||||
setup_ajax($("#id_id_filename"), $("#id_filename_list"), $("#id_id_filename_search"), "{% url "ipradmin_ajax_internet_draft" %}");
|
||||
|
||||
});
|
||||
</script>
|
||||
{% endblock %}
|
||||
|
||||
{% block breadcrumbs %}{{ block.super }}
|
||||
» <a href="{% url ipradmin_admin_list %}">IPR Admin</a>
|
||||
» <a href="{% url "ipradmin_admin_list" %}">IPR Admin</a>
|
||||
» Create
|
||||
{% endblock %}
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@ IPR Admin Detail Page
|
|||
{% endblock %}
|
||||
|
||||
{% block breadcrumbs %}{{ block.super }}
|
||||
» <a href="{% url ipradmin_admin_list %}">IPR Admin</a>
|
||||
» <a href="{% url "ipradmin_admin_list" %}">IPR Admin</a>
|
||||
» Detail
|
||||
{% endblock %}
|
||||
|
||||
|
|
|
@ -17,7 +17,7 @@ IPR Administrate Page
|
|||
<div class="module">
|
||||
<div class="button-group">
|
||||
<ul>
|
||||
<li><button onclick="window.location='{% url ipradmin_admin_create %}'">Create new IPR</button></li>
|
||||
<li><button onclick="window.location='{% url "ipradmin_admin_create" %}'">Create new IPR</button></li>
|
||||
<li><button onclick="window.location='https://datatracker.ietf.org/public/ipr_disclosure.cgi'">IPR Disclosure Page</button></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
@ -26,7 +26,7 @@ IPR Administrate Page
|
|||
<table>
|
||||
{% for ipr in queue_ipr %}
|
||||
<tr class="{% cycle 'row1' 'row2' %}">
|
||||
<td><a href="{% url ipradmin_admin_detail ipr.ipr_id %}">{{ipr.title }}</a></td>
|
||||
<td><a href="{% url "ipradmin_admin_detail" ipr.ipr_id %}">{{ipr.title }}</a></td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</table>
|
||||
|
@ -36,7 +36,7 @@ IPR Administrate Page
|
|||
<table>
|
||||
{% for ipr in generic_ipr %}
|
||||
<tr class="{% cycle 'row1' 'row2' %}">
|
||||
<td><a href="{% url ipradmin_admin_update ipr.ipr_id %}">{{ipr.title }}</a>
|
||||
<td><a href="{% url "ipradmin_admin_update" ipr.ipr_id %}">{{ipr.title }}</a>
|
||||
{% if ipr.legacy_title_1 %}
|
||||
<br />
|
||||
<a href="{{ipr.legacy_url_1}}">{{ipr.legacy_title_1}},</a>
|
||||
|
@ -55,7 +55,7 @@ IPR Administrate Page
|
|||
<table>
|
||||
{% for ipr in third_party_notifications %}
|
||||
<tr class="{% cycle 'row1' 'row2' %}">
|
||||
<td><a href="{% url ipradmin_admin_update ipr.ipr_id %}">{{ipr.title }}</a>
|
||||
<td><a href="{% url "ipradmin_admin_update" ipr.ipr_id %}">{{ipr.title }}</a>
|
||||
{% if ipr.legacy_title_1 %}
|
||||
<br />
|
||||
<a href="{{ipr.legacy_url_1}}">{{ipr.legacy_title_1}},</a>
|
||||
|
@ -74,7 +74,7 @@ IPR Administrate Page
|
|||
<table>
|
||||
{% for ipr in specific_ipr %}
|
||||
<tr class="{% cycle 'row1' 'row2' %}">
|
||||
<td><a href="{% url ipradmin_admin_update ipr.ipr_id %}">{{ipr.title }}</a>
|
||||
<td><a href="{% url "ipradmin_admin_update" ipr.ipr_id %}">{{ipr.title }}</a>
|
||||
{% if ipr.legacy_title_1 %}
|
||||
<br />
|
||||
<a href="{{ipr.legacy_url_1}}">{{ipr.legacy_title_1}},</a>
|
||||
|
@ -93,7 +93,7 @@ IPR Administrate Page
|
|||
<table>
|
||||
{% for ipr in admin_removed_ipr %}
|
||||
<tr class="{% cycle 'row1' 'row2' %}">
|
||||
<td><a href="{% url ipradmin_admin_update ipr.ipr_id %}">{{ipr.title }}</a>
|
||||
<td><a href="{% url "ipradmin_admin_update" ipr.ipr_id %}">{{ipr.title }}</a>
|
||||
{% if ipr.legacy_title_1 %}
|
||||
<br />
|
||||
<a href="{{ipr.legacy_url_1}}">{{ipr.legacy_title_1}},</a>
|
||||
|
@ -111,7 +111,7 @@ IPR Administrate Page
|
|||
<table>
|
||||
{% for ipr in request_removed_ipr %}
|
||||
<tr class="{% cycle 'row1' 'row2' %}">
|
||||
<td><a href="{% url ipradmin_admin_update ipr.ipr_id %}">{{ipr.title }}</a>
|
||||
<td><a href="{% url "ipradmin_admin_update" ipr.ipr_id %}">{{ipr.title }}</a>
|
||||
{% if ipr.legacy_title_1 %}
|
||||
<br />
|
||||
<a href="{{ipr.legacy_url_1}}">{{ipr.legacy_title_1}},</a>
|
||||
|
|
|
@ -9,7 +9,7 @@ IPR Admin Notify Page
|
|||
{% endblock %}
|
||||
|
||||
{% block breadcrumbs %}{{ block.super }}
|
||||
» <a href="{% url ipradmin_admin_list %}">IPR Admin</a>
|
||||
» <a href="{% url "ipradmin_admin_list" %}">IPR Admin</a>
|
||||
» Notify
|
||||
{% endblock %}
|
||||
|
||||
|
|
|
@ -54,15 +54,15 @@ $(function() {
|
|||
});
|
||||
}
|
||||
|
||||
setup_ajax($("#id_rfc_num"), $("#rfc_num_list"), $("#id_rfc_num_search"), "{% url ipradmin_ajax_rfc_num %}");
|
||||
setup_ajax($("#id_id_filename"), $("#id_filename_list"), $("#id_id_filename_search"), "{% url ipradmin_ajax_internet_draft %}");
|
||||
setup_ajax($("#id_rfc_num"), $("#rfc_num_list"), $("#id_rfc_num_search"), "{% url "ipradmin_ajax_rfc_num" %}");
|
||||
setup_ajax($("#id_id_filename"), $("#id_filename_list"), $("#id_id_filename_search"), "{% url "ipradmin_ajax_internet_draft" %}");
|
||||
|
||||
});
|
||||
</script>
|
||||
{% endblock %}
|
||||
|
||||
{% block breadcrumbs %}{{ block.super }}
|
||||
» <a href="{% url ipradmin_admin_list %}">IPR Admin</a>
|
||||
» <a href="{% url "ipradmin_admin_list" %}">IPR Admin</a>
|
||||
» Update
|
||||
{% endblock %}
|
||||
|
||||
|
|
|
@ -9,31 +9,31 @@
|
|||
<tr valign="top">
|
||||
<td>
|
||||
<h3>IESG</h3>
|
||||
<li> <a href="{% url announcement %}"><b>Announcement</b></a></li><br>
|
||||
<li> <a href="{% url telechat %}"><b>Telechat</b></a></li><br>
|
||||
<li> <a href="{% url console %}"><b>Console</b></a></li><br>
|
||||
<li> <a href="{% url "announcement" %}"><b>Announcement</b></a></li><br>
|
||||
<li> <a href="{% url "telechat" %}"><b>Telechat</b></a></li><br>
|
||||
<li> <a href="{% url "console" %}"><b>Console</b></a></li><br>
|
||||
</td>
|
||||
<td>
|
||||
<h3>IDs and WGs Process</h3>
|
||||
<li> <a href="{% url drafts %}"><b>Drafts</b></a></li><br>
|
||||
<li> <a href="{% url areas %}"><b>Areas</b></a></li><br>
|
||||
<li> <a href="{% url groups %}"><b>Groups</b></a></li><br>
|
||||
<li> <a href="{% url rolodex %}"><b>Rolodex</b></a></li><br>
|
||||
<li> <a href="{% url roles %}"><b>Roles</b></a></li><br>
|
||||
<li> <a href="{% url "drafts" %}"><b>Drafts</b></a></li><br>
|
||||
<li> <a href="{% url "areas" %}"><b>Areas</b></a></li><br>
|
||||
<li> <a href="{% url "groups" %}"><b>Groups</b></a></li><br>
|
||||
<li> <a href="{% url "rolodex" %}"><b>Rolodex</b></a></li><br>
|
||||
<li> <a href="{% url "roles" %}"><b>Roles</b></a></li><br>
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td>
|
||||
<h3>Meetings and Proceedings</h3>
|
||||
<li> <a href="{% url drafts_dates %}"><b>Draft Submission Dates</b></a></li><br>
|
||||
<li> <a href="{% url sessions %}"><b>Session Requests</b></a></li><br>
|
||||
<li> <a href="{% url proceedings %}"><b>Meeting Materials Manager (Proceedings)</b></a></li><br>
|
||||
<li> <a href="{% url meetings %}"><b>Meeting Manager</b></a></li><br>
|
||||
<li> <a href="{% url meetings_blue_sheet_redirect %}"><b>Blue Sheets</b></a></li><br>
|
||||
<li> <a href="{% url "drafts_dates" %}"><b>Draft Submission Dates</b></a></li><br>
|
||||
<li> <a href="{% url "sessions" %}"><b>Session Requests</b></a></li><br>
|
||||
<li> <a href="{% url "proceedings" %}"><b>Meeting Materials Manager (Proceedings)</b></a></li><br>
|
||||
<li> <a href="{% url "meetings" %}"><b>Meeting Manager</b></a></li><br>
|
||||
<li> <a href="{% url "meetings_blue_sheet_redirect" %}"><b>Blue Sheets</b></a></li><br>
|
||||
</td>
|
||||
<td>
|
||||
<h3>IPR</h3>
|
||||
<li> <a href="{% url ipradmin %}"><b>IPR Admin</b></a></li><br>
|
||||
<li> <a href="{% url "ipradmin" %}"><b>IPR Admin</b></a></li><br>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
@ -44,9 +44,9 @@
|
|||
<tr valign="top">
|
||||
<td>
|
||||
<h3>Section 1</h3>
|
||||
<li> <a href="{% url sessions %}"><b>Session Requests</b></a></li><br>
|
||||
<li> <a href="{% url proceedings %}"><b>Meeting Material Manager</b></a></li><br>
|
||||
<li> <a href="{% url announcement %}"><b>Announcements</b></a></li><br>
|
||||
<li> <a href="{% url "sessions" %}"><b>Session Requests</b></a></li><br>
|
||||
<li> <a href="{% url "proceedings" %}"><b>Meeting Material Manager</b></a></li><br>
|
||||
<li> <a href="{% url "announcement" %}"><b>Announcements</b></a></li><br>
|
||||
</td>
|
||||
<td>
|
||||
<h3>Section 2</h3>
|
||||
|
|
|
@ -21,9 +21,9 @@
|
|||
|
||||
<div id="nav" class="rooms-times-nav">
|
||||
<ul id="list-nav">
|
||||
<li id="nav-room" class="leftmost"><a href="{% url meetings_rooms meeting_id=meeting.number %}">Rooms</a></li>
|
||||
<li id="nav-time"><a href="{% url meetings_times meeting_id=meeting.number %}">Times</a></li>
|
||||
<li id="nav-non-session"><a href="{% url meetings_non_session meeting_id=meeting.number %}">Non-Session</a></li>
|
||||
<li id="nav-room" class="leftmost"><a href="{% url "meetings_rooms" meeting_id=meeting.number %}">Rooms</a></li>
|
||||
<li id="nav-time"><a href="{% url "meetings_times" meeting_id=meeting.number %}">Times</a></li>
|
||||
<li id="nav-non-session"><a href="{% url "meetings_non_session" meeting_id=meeting.number %}">Non-Session</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
<h1> Meeting {{ meeting.number }}</h1>
|
||||
|
||||
<p>
|
||||
<a href="{% url meetings_blue_sheet_generate meeting_id=meeting.number%}">Generate Blue Sheets</a><br />
|
||||
<a href="{% url "meetings_blue_sheet_generate" meeting_id=meeting.number%}">Generate Blue Sheets</a><br />
|
||||
<a href="{{ url }}">Download</a> latest Blue Sheets.
|
||||
</p>
|
||||
<hr />
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
</div> <!-- inline-related -->
|
||||
<div class="button-group">
|
||||
<ul id="proceedings-interim-buttons">
|
||||
<li><button onclick="window.location='{% url meetings_add %}'">Create New Meeting</button></li>
|
||||
<li><button onclick="window.location='{% url "meetings_add" %}'">Create New Meeting</button></li>
|
||||
</ul>
|
||||
</div> <!-- button-group -->
|
||||
</div> <!-- module -->
|
||||
|
|
|
@ -29,13 +29,13 @@
|
|||
<td>{{ item.session.short }}</td>
|
||||
<td>{{ item.session.group.acronym }}</td>
|
||||
{% if item.type.slug == 'other' or item.type.slug == 'plenary' %}
|
||||
<td><a href="{% url meetings_non_session_edit meeting_id=meeting.number slot_id=item.id %}">{{ item.location }}</a></td>
|
||||
<td><a href="{% url "meetings_non_session_edit" meeting_id=meeting.number slot_id=item.id %}">{{ item.location }}</a></td>
|
||||
{% else %}
|
||||
<td>{{ item.location }}</td>
|
||||
{% endif %}
|
||||
<td>{{ item.show_location }}</td>
|
||||
<td>{{ item.type }}</td>
|
||||
<td><a href="{% url meetings_non_session_delete meeting_id=meeting.number slot_id=item.id %}">Delete</a></td>
|
||||
<td><a href="{% url "meetings_non_session_delete" meeting_id=meeting.number slot_id=item.id %}">Delete</a></td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
|
|
|
@ -36,8 +36,8 @@
|
|||
|
||||
{% block breadcrumbs %}{{ block.super }}
|
||||
» <a href="../../">Meetings</a>
|
||||
» <a href="{% url meetings_view meeting_id=meeting.number %}">{{ meeting }}</a>
|
||||
» <a href="{% url meetings_select_group meeting_id=meeting.number %}">Select</a>
|
||||
» <a href="{% url "meetings_view" meeting_id=meeting.number %}">{{ meeting }}</a>
|
||||
» <a href="{% url "meetings_select_group" meeting_id=meeting.number %}">Select</a>
|
||||
» {{ group.acronym }}
|
||||
{% endblock %}
|
||||
|
||||
|
@ -74,8 +74,8 @@
|
|||
<div class="button-group">
|
||||
<ul>
|
||||
<li><button type="submit" name="submit" value="Save">Save</button></li>
|
||||
<li><button type="button" onclick="if (window.confirm('This group will be permanently removed from the agenda and scheduling tool')) { window.location='{% url meetings_remove_session meeting_id=meeting.number acronym=group.acronym %}' };">Remove this group from agenda</button></li>
|
||||
<li><button type="button" onclick="window.location='{% url meetings_select_group meeting_id=meeting.number %}'">Back</button></li>
|
||||
<li><button type="button" onclick="if (window.confirm('This group will be permanently removed from the agenda and scheduling tool')) { window.location='{% url "meetings_remove_session" meeting_id=meeting.number acronym=group.acronym %}' };">Remove this group from agenda</button></li>
|
||||
<li><button type="button" onclick="window.location='{% url "meetings_select_group" meeting_id=meeting.number %}'">Back</button></li>
|
||||
</ul>
|
||||
</div> <!-- button-group -->
|
||||
|
||||
|
|
|
@ -49,7 +49,7 @@
|
|||
<h2>Scheduled Sessions</h2>
|
||||
<ul>
|
||||
{% for group in scheduled_groups %}
|
||||
<li><a href="{% url meetings_schedule meeting_id=meeting.number acronym=group.acronym %}">{{ group.acronym }}</a></li>
|
||||
<li><a href="{% url "meetings_schedule" meeting_id=meeting.number acronym=group.acronym %}">{{ group.acronym }}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</div><!-- inline-related-->
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
<td>{{ item.time|date:"D" }}</td>
|
||||
<td>{{ item.time|date:"H:i" }} - {{ item.end_time|date:"H:i" }}</td>
|
||||
<td>{{ item.name }}</td>
|
||||
<td><a href="{% url meetings_times_delete meeting_id=meeting.number time=item.time|date:"Y:m:d:H:i" %}">Delete</a></td>
|
||||
<td><a href="{% url "meetings_times_delete" meeting_id=meeting.number time=item.time|date:"Y:m:d:H:i" %}">Delete</a></td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
|
|
|
@ -33,9 +33,9 @@
|
|||
|
||||
<div class="button-group">
|
||||
<ul>
|
||||
<li><button onclick="window.location='{% url meetings_edit_meeting meeting_id=meeting.number %}'">Edit</button></li>
|
||||
<li><button onclick="window.location='{% url meetings_rooms meeting_id=meeting.number %}'">Rooms and Times</button></li>
|
||||
<li><button onclick="window.location='{% url meetings_select_group meeting_id=meeting.number %}'">Schedule WG Sessions</button></li>
|
||||
<li><button onclick="window.location='{% url "meetings_edit_meeting" meeting_id=meeting.number %}'">Edit</button></li>
|
||||
<li><button onclick="window.location='{% url "meetings_rooms" meeting_id=meeting.number %}'">Rooms and Times</button></li>
|
||||
<li><button onclick="window.location='{% url "meetings_select_group" meeting_id=meeting.number %}'">Schedule WG Sessions</button></li>
|
||||
</ul>
|
||||
</div> <!-- button-group -->
|
||||
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
<td>{{ slide.slide_name }}</td>
|
||||
<td>{{ slide.group_name }}</td>
|
||||
<td><a href="{{ MEDIA_URL }}proceedings/{{ meeting.meeting_num }}/slides/{{ slide.filename }}">Download</a></td>
|
||||
<td><a href="{% url sec.proceedings.views.upload_presentation id=meeting.meeting_num slide_id=slide.id %}">Upload</a></td>
|
||||
<td><a href="{% url "sec.proceedings.views.upload_presentation" id=meeting.meeting_num slide_id=slide.id %}">Upload</a></td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
|
|
|
@ -8,15 +8,15 @@
|
|||
|
||||
{% block breadcrumbs %}{{ block.super }}
|
||||
{% if meeting.type_id == "interim" %}
|
||||
» <a href="{% url proceedings %}">Proceedings</a>
|
||||
» <a href="{% url proceedings_select_interim %}">Interim Select Group</a>
|
||||
» <a href="{% url proceedings_interim acronym=group.acronym %}">{{ group.acronym }}</a>
|
||||
» <a href="{% url proceedings_upload_unified meeting_num=meeting.number acronym=group.acronym %}">{{ meeting }}</a>
|
||||
» <a href="{% url "proceedings" %}">Proceedings</a>
|
||||
» <a href="{% url "proceedings_select_interim" %}">Interim Select Group</a>
|
||||
» <a href="{% url "proceedings_interim" acronym=group.acronym %}">{{ group.acronym }}</a>
|
||||
» <a href="{% url "proceedings_upload_unified" meeting_num=meeting.number acronym=group.acronym %}">{{ meeting }}</a>
|
||||
» {{ slide.title }}
|
||||
{% else %}
|
||||
» <a href="{% url proceedings %}">Proceedings</a>
|
||||
» <a href="{% url proceedings_select meeting_num=meeting.number %}">Select</a>
|
||||
» <a href="{% url proceedings_upload_unified meeting_num=meeting.number acronym=group.acronym%}">{{ group.acronym }}</a>
|
||||
» <a href="{% url "proceedings" %}">Proceedings</a>
|
||||
» <a href="{% url "proceedings_select" meeting_num=meeting.number %}">Select</a>
|
||||
» <a href="{% url "proceedings_upload_unified" meeting_num=meeting.number acronym=group.acronym%}">{{ group.acronym }}</a>
|
||||
» {{ slide.title }}
|
||||
{% endif %}
|
||||
|
||||
|
|
|
@ -21,9 +21,9 @@
|
|||
{% if meetings %}
|
||||
<ul>
|
||||
{% for meeting in meetings %}
|
||||
<li><a href="{% url proceedings_upload_unified meeting_num=meeting.number acronym=group.acronym %}">{{meeting.date}}</a>
|
||||
<li><a href="{% url "proceedings_upload_unified" meeting_num=meeting.number acronym=group.acronym %}">{{meeting.date}}</a>
|
||||
{% if request.user_is_secretariat %}
|
||||
- <a href="{% url proceedings_delete_interim_meeting meeting_num=meeting.number %}" onClick="javascript:return confirm('Are you sure you want to delete this meeting? Any uploaded material will be removed.')">[Delete]</a>
|
||||
- <a href="{% url "proceedings_delete_interim_meeting" meeting_num=meeting.number %}" onClick="javascript:return confirm('Are you sure you want to delete this meeting? Any uploaded material will be removed.')">[Delete]</a>
|
||||
{% endif %}
|
||||
</li>
|
||||
{% endfor %}
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
{% for meeting in meetings %}
|
||||
<tr class = "{% cycle 'row1' 'row2' %}{% if meeting.get_submission_correction_date < today %} frozen{% else %} open{% endif %}">
|
||||
<td>
|
||||
<a href="{% url proceedings_select meeting_num=meeting.number %}">{{ meeting.number }}</a>
|
||||
<a href="{% url "proceedings_select" meeting_num=meeting.number %}">{{ meeting.number }}</a>
|
||||
</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
|
@ -34,7 +34,7 @@
|
|||
{% if request.user_is_secretariat %}
|
||||
<div class="button-group">
|
||||
<ul id="proceedings-meeting-buttons">
|
||||
<li><button onclick="window.location='{% url meetings_add %}'">Add</button></li>
|
||||
<li><button onclick="window.location='{% url "meetings_add" %}'">Add</button></li>
|
||||
</ul>
|
||||
</div> <!-- button-group -->
|
||||
{% endif %}
|
||||
|
@ -52,7 +52,7 @@
|
|||
{% for meeting in interim_meetings %}
|
||||
|
||||
<tr class = "{% cycle 'row1' 'row2' %}">
|
||||
<td><a href="{% url proceedings_upload_unified meeting_num=meeting.number acronym=meeting.group.acronym %}">{{ meeting.group.acronym|ljust:"8" }} - {{ meeting.date }}</a></td>
|
||||
<td><a href="{% url "proceedings_upload_unified" meeting_num=meeting.number acronym=meeting.group.acronym %}">{{ meeting.group.acronym|ljust:"8" }} - {{ meeting.date }}</a></td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
|
@ -60,7 +60,7 @@
|
|||
</div> <!-- scroll -->
|
||||
<div class="button-group">
|
||||
<ul id="proceedings-interim-buttons">
|
||||
<li><button onclick="window.location='{% url proceedings_select_interim %}'">Create Interim Meeting</button></li>
|
||||
<li><button onclick="window.location='{% url "proceedings_select_interim" %}'">Create Interim Meeting</button></li>
|
||||
</ul>
|
||||
</div> <!-- button-group -->
|
||||
</div>
|
||||
|
|
|
@ -8,15 +8,15 @@
|
|||
|
||||
{% block breadcrumbs %}{{ block.super }}
|
||||
{% if meeting.type_id == "interim" %}
|
||||
» <a href="{% url proceedings %}">Proceedings</a>
|
||||
» <a href="{% url proceedings_select_interim %}">Interim Select Group</a>
|
||||
» <a href="{% url proceedings_interim acronym=group.acronym %}">{{ group.acronym }}</a>
|
||||
» <a href="{% url proceedings_upload_unified meeting_num=meeting.number acronym=group.acronym %}">{{ meeting }}</a>
|
||||
» <a href="{% url "proceedings" %}">Proceedings</a>
|
||||
» <a href="{% url "proceedings_select_interim" %}">Interim Select Group</a>
|
||||
» <a href="{% url "proceedings_interim" acronym=group.acronym %}">{{ group.acronym }}</a>
|
||||
» <a href="{% url "proceedings_upload_unified" meeting_num=meeting.number acronym=group.acronym %}">{{ meeting }}</a>
|
||||
» {{ slide.title }}
|
||||
{% else %}
|
||||
» <a href="{% url proceedings %}">Proceedings</a>
|
||||
» <a href="{% url proceedings_select meeting_num=meeting.number %}">Select</a>
|
||||
» <a href="{% url proceedings_upload_unified meeting_num=meeting.number acronym=group.acronym %}">{{ group.acronym }}</a>
|
||||
» <a href="{% url "proceedings" %}">Proceedings</a>
|
||||
» <a href="{% url "proceedings_select" meeting_num=meeting.number %}">Select</a>
|
||||
» <a href="{% url "proceedings_upload_unified" meeting_num=meeting.number acronym=group.acronym %}">{{ group.acronym }}</a>
|
||||
» {{ slide.title }}
|
||||
{% endif %}
|
||||
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
|
||||
|
||||
{% block breadcrumbs %}{{ block.super }}
|
||||
» <a href="{% url proceedings %}">Proceedings</a>
|
||||
» <a href="{% url "proceedings" %}">Proceedings</a>
|
||||
» {{ meeting.number }} - Select Group
|
||||
{% endblock %}
|
||||
|
||||
|
@ -45,7 +45,7 @@
|
|||
meet at IETF {{meeting.number }}. You must request a session slot in order for your group(s) to appear on
|
||||
this list.</p>
|
||||
<p>- To request a session slot for a working group, please use the
|
||||
<a href="{% url sessions %}">IETF Meeting Session Request Tool</a>.
|
||||
<a href="{% url "sessions" %}">IETF Meeting Session Request Tool</a>.
|
||||
<br>
|
||||
- To request a session slot for a BOF, please send a message to <a href="mailto:ietf-action@ietf.org">agenda@ietf.org</a>.
|
||||
Additional information is available at
|
||||
|
|
|
@ -14,13 +14,13 @@
|
|||
{% block breadcrumbs %}{{ block.super }}
|
||||
|
||||
{% if meeting.type_id == "interim" %}
|
||||
» <a href="{% url proceedings %}">Proceedings</a>
|
||||
» <a href="{% url proceedings_select_interim %}">Interim Select Group</a>
|
||||
» <a href="{% url proceedings_interim acronym=group.acronym%}">{{ group.acronym }}</a>
|
||||
» <a href="{% url "proceedings" %}">Proceedings</a>
|
||||
» <a href="{% url "proceedings_select_interim" %}">Interim Select Group</a>
|
||||
» <a href="{% url "proceedings_interim" acronym=group.acronym%}">{{ group.acronym }}</a>
|
||||
» {{ meeting }}
|
||||
{% else %}
|
||||
» <a href="{% url proceedings %}">Proceedings</a>
|
||||
» <a href="{% url proceedings_select meeting_num=meeting.number %}">{{ meeting }}</a>
|
||||
» <a href="{% url "proceedings" %}">Proceedings</a>
|
||||
» <a href="{% url "proceedings_select" meeting_num=meeting.number %}">{{ meeting }}</a>
|
||||
» {% if session_name %}{{ session_name }}{% else %}{{ group.acronym }}{% endif %}
|
||||
{% endif %}
|
||||
|
||||
|
@ -54,7 +54,7 @@
|
|||
{% if minutes %}
|
||||
<td><a href="{{ minutes.get_absolute_url }}" target="_blank">Minutes</td>
|
||||
<td>{{ minutes.external_url }}</td>
|
||||
<td><a href="{% url proceedings_delete_material slide_id=minutes.name %}">Delete</a></td>
|
||||
<td><a href="{% url "proceedings_delete_material" slide_id=minutes.name %}">Delete</a></td>
|
||||
{% else %}
|
||||
<td>Minutes</td>
|
||||
<td>(not uploaded)</td>
|
||||
|
@ -65,7 +65,7 @@
|
|||
{% if agenda %}
|
||||
<td><a href="{{ agenda.get_absolute_url }}" target="_blank">Agenda</a></td>
|
||||
<td>{{ agenda.external_url }}</td>
|
||||
<td><a href="{% url proceedings_delete_material slide_id=agenda.name %}">Delete</a></td>
|
||||
<td><a href="{% url "proceedings_delete_material" slide_id=agenda.name %}">Delete</a></td>
|
||||
{% else %}
|
||||
<td>Agenda</td>
|
||||
<td>(not uploaded)</td>
|
||||
|
|
|
@ -41,7 +41,7 @@
|
|||
<div class="button-group">
|
||||
{% ifequal meeting.frozen 0 %}
|
||||
<ul>
|
||||
<li><button onclick="window.location='{% url proceedings_select meeting_num=meeting.number %}'">Upload Materials</button></li>
|
||||
<li><button onclick="window.location='{% url "proceedings_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>
|
||||
|
|
|
@ -19,10 +19,10 @@
|
|||
|
||||
<div id="nav" class="role-nav">
|
||||
<ul id="list-nav">
|
||||
<li id="nav-ietf" class="leftmost"><a href="{% url roles_chair type='ietf' %}">IETF</a></li>
|
||||
<li id="nav-iab"><a href="{% url roles_chair type='iab' %}">IAB</a></li>
|
||||
<li id="nav-nomcom"><a href="{% url roles_chair type='nomcom' %}">NOMCOM</a></li>
|
||||
<li id="nav-liaisons"><a href="{% url roles_liaisons %}">Liaisons Members</a></li>
|
||||
<li id="nav-ietf" class="leftmost"><a href="{% url "roles_chair" type='ietf' %}">IETF</a></li>
|
||||
<li id="nav-iab"><a href="{% url "roles_chair" type='iab' %}">IAB</a></li>
|
||||
<li id="nav-nomcom"><a href="{% url "roles_chair" type='nomcom' %}">NOMCOM</a></li>
|
||||
<li id="nav-liaisons"><a href="{% url "roles_liaisons" %}">Liaisons Members</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
<td>{{ role.name }}</td>
|
||||
<td>{{ role.person }}</td>
|
||||
<td>{{ role.email }}</td>
|
||||
<td><a href="{% url roles_delete_role type=type id=role.id %}">Delete</a></td>
|
||||
<td><a href="{% url "roles_delete_role" type=type id=role.id %}">Delete</a></td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
<tr>
|
||||
<form action="." method="post">
|
||||
<input type="hidden" name="liaison-tag" value="{{ liaison.person.person_or_org_tag }}"
|
||||
<td><a href="{% url sec.rolodex.views.view tag=liaison.person.person_or_org_tag %}">{{ liaison.person.first_name }} {{ liaison.person.last_name }}</a></td>
|
||||
<td><a href="{% url "sec.rolodex.views.view" tag=liaison.person.person_or_org_tag %}">{{ liaison.person.first_name }} {{ liaison.person.last_name }}</a></td>
|
||||
<td>{{ liaison.person.affiliation }}</td>
|
||||
<td>{{ liaison.affiliation }} Liaison</td>
|
||||
<td><button type="submit" name="submit" value="Delete" onclick="return window.confirm('You are about to delete {{ liaison.person.first_name }} {{ liaison.person.last_name }} from the list.');">Delete</button>
|
||||
|
|
|
@ -47,7 +47,7 @@
|
|||
<form id="roles-form".>
|
||||
{{ group_form.as_p }}
|
||||
</form>
|
||||
<p><a href="{% url groups_add %}">Add a new group...</a></p>
|
||||
<p><a href="{% url "groups_add" %}">Add a new group...</a></p>
|
||||
</div> <!-- inline-related -->
|
||||
<br>
|
||||
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
<td>{{ role.name }}</td>
|
||||
<td>{{ role.person }}</td>
|
||||
<td>{{ role.email }}</td>
|
||||
<td><a href="{% url roles_delete_role acronym=group.acronym id=role.id %}">Delete</a></td>
|
||||
<td><a href="{% url "roles_delete_role" acronym=group.acronym id=role.id %}">Delete</a></td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
<h1>Are you sure?</h1>
|
||||
|
||||
<p>Are you sure you want to delete the Rolodex Entry "{{ person.name }} ({{ person.id }})"? All of the following related items will be deleted:</p>
|
||||
<ul><li>Rolodex Entry: <a href="{% url rolodex_view id=person.id %}">{{ person.name }} ({{ person.id }})</a>
|
||||
<ul><li>Rolodex Entry: <a href="{% url "rolodex_view" id=person.id %}">{{ person.name }} ({{ person.id }})</a>
|
||||
<ul>
|
||||
{% for email in person.email_set.all %}
|
||||
<li>Email Address: {{ email.address }}</li>
|
||||
|
|
|
@ -44,10 +44,10 @@
|
|||
<td>{{ role.name }} </td>
|
||||
<td>
|
||||
{% ifequal role.group.type.slug "wg" %}
|
||||
<a href="{% url groups_view acronym=role.group.acronym %}">{{ role.group.acronym }}</a>
|
||||
<a href="{% url "groups_view" acronym=role.group.acronym %}">{{ role.group.acronym }}</a>
|
||||
{% else %}
|
||||
{% ifequal role.group.type.slug "area" %}
|
||||
<a href="{% url areas_view name=role.group.acronym %}">{{ role.group.acronym }}</a>
|
||||
<a href="{% url "areas_view" name=role.group.acronym %}">{{ role.group.acronym }}</a>
|
||||
{% else %}
|
||||
{{ role.group }}
|
||||
{% endifequal %}
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
{% endblock %}
|
||||
|
||||
{% block breadcrumbs %}{{ block.super }}
|
||||
» <a href="{% url sessions %}">Sessions</a>
|
||||
» <a href="{% url "sessions" %}">Sessions</a>
|
||||
» <a href="../">New</a>
|
||||
» Session Request Confirmation
|
||||
{% endblock %}
|
||||
|
|
|
@ -20,9 +20,9 @@
|
|||
Sessions Request Tool: IETF {{ meeting.meeting_num }}
|
||||
{% if request.user_is_secretariat %}
|
||||
{% if is_locked %}
|
||||
<span class="locked"><a href="{% url sessions_tool_status %}">Tool Status: Locked</a></span>
|
||||
<span class="locked"><a href="{% url "sessions_tool_status" %}">Tool Status: Locked</a></span>
|
||||
{% else %}
|
||||
<span class="unlocked"><a href="{% url sessions_tool_status %}">Tool Status: Unlocked</a></span>
|
||||
<span class="unlocked"><a href="{% url "sessions_tool_status" %}">Tool Status: Unlocked</a></span>
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
</h2>
|
||||
|
@ -32,12 +32,12 @@
|
|||
<ul>
|
||||
{% for group in unscheduled_groups %}
|
||||
<li>
|
||||
<a href="{% url sessions_new acronym=group.acronym %}">{{ group.acronym }}</a>
|
||||
<a href="{% url "sessions_new" acronym=group.acronym %}">{{ group.acronym }}</a>
|
||||
{% if meeting in group.meetings_not_scheduled.all %}
|
||||
<span class="required"> (Currently, this group does not plan to hold a session at IETF {{ meeting.meeting_num }})</span>
|
||||
{% else %}
|
||||
<!--
|
||||
<a href="{% url sessions_no_session acronym=group.acronym %}"> - [ Group will not meet ]</a>
|
||||
<a href="{% url "sessions_no_session" acronym=group.acronym %}"> - [ Group will not meet ]</a>
|
||||
-->
|
||||
{% endif %}
|
||||
</li>
|
||||
|
@ -51,7 +51,7 @@
|
|||
<p>The list below includes those working groups for which you or your co-chair has requested sessions at the upcoming IETF meeting. You can click on an acronym to initiate changes to a session, or cancel a session.</p>
|
||||
<ul>
|
||||
{% for session in scheduled_sessions %}
|
||||
<li><a href="{% url sessions_view session_id=session.session_id %}">{{ session.group }} - {% if not session.ts_status_id %}{{ session.status }}{% else %}First Two Sessions:{{ session.status }}, Third Session:{{ session.ts_status }}{% endif %}</a></li>
|
||||
<li><a href="{% url "sessions_view" session_id=session.session_id %}">{{ session.group }} - {% if not session.ts_status_id %}{{ session.status }}{% else %}First Two Sessions:{{ session.status }}, Third Session:{{ session.ts_status }}{% endif %}</a></li>
|
||||
{% empty %}
|
||||
<i>NONE</i>
|
||||
{% endfor %}
|
||||
|
|
|
@ -20,9 +20,9 @@
|
|||
Sessions Request Tool: IETF {{ meeting.number }}
|
||||
{% if request.user_is_secretariat %}
|
||||
{% if is_locked %}
|
||||
<span class="locked"><a href="{% url sessions_tool_status %}">Tool Status: Locked</a></span>
|
||||
<span class="locked"><a href="{% url "sessions_tool_status" %}">Tool Status: Locked</a></span>
|
||||
{% else %}
|
||||
<span class="unlocked"><a href="{% url sessions_tool_status %}">Tool Status: Unlocked</a></span>
|
||||
<span class="unlocked"><a href="{% url "sessions_tool_status" %}">Tool Status: Unlocked</a></span>
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
</h2>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<ul>
|
||||
{% for group in unscheduled_groups %}
|
||||
<li>
|
||||
<a href="{% url sessions_new acronym=group.acronym %}">{{ group.acronym }}</a>
|
||||
<a href="{% url "sessions_new" acronym=group.acronym %}">{{ group.acronym }}</a>
|
||||
{% if group.not_meeting %}
|
||||
<span class="required"> (Currently, this group does not plan to hold a session at IETF {{ meeting.number }})</span>
|
||||
{% endif %}
|
||||
|
@ -47,7 +47,7 @@
|
|||
<p>The list below includes those working groups for which you or your co-chair has requested sessions at the upcoming IETF meeting. You can click on an acronym to initiate changes to a session, or cancel a session.</p>
|
||||
<ul>
|
||||
{% for group in scheduled_groups %}
|
||||
<li><a href="{% url sessions_view acronym=group.acronym %}">{{ group.acronym }} - {{ group.status_message }}</a></li>
|
||||
<li><a href="{% url "sessions_view" acronym=group.acronym %}">{{ group.acronym }} - {{ group.status_message }}</a></li>
|
||||
{% empty %}
|
||||
<i>NONE</i>
|
||||
{% endfor %}
|
||||
|
|
|
@ -23,8 +23,8 @@
|
|||
<div class="inline-related">
|
||||
<br>
|
||||
<ul class="session-buttons">
|
||||
<li><button onclick="if (window.confirm('A message will be sent to agenda@ietf.com as well as to the area director(s).\n\nContinue?')) { window.location='{% url sessions_no_session acronym=group.acronym %}'};">Send a notification that the group does not plan to hold a session at IETF {{ meeting.number }}</button></li>
|
||||
<li><button onclick="window.location='{% url sessions_new acronym=group.acronym %}?previous'">Retrieve all information from previous meeting</button></li>
|
||||
<li><button onclick="if (window.confirm('A message will be sent to agenda@ietf.com as well as to the area director(s).\n\nContinue?')) { window.location='{% url "sessions_no_session" acronym=group.acronym %}'};">Send a notification that the group does not plan to hold a session at IETF {{ meeting.number }}</button></li>
|
||||
<li><button onclick="window.location='{% url "sessions_new" acronym=group.acronym %}?previous'">Retrieve all information from previous meeting</button></li>
|
||||
</ul>
|
||||
|
||||
{% include "includes/sessions_request_form.html" %}
|
||||
|
|
|
@ -5,7 +5,7 @@ submitted by {{ requester }}.
|
|||
The third session requires your approval.
|
||||
|
||||
To approve the session go to the session request view here:
|
||||
https://pub.ietf.org{% url sessions_view acronym=group.acronym %}
|
||||
https://pub.ietf.org{% url "sessions_view" acronym=group.acronym %}
|
||||
and click "Approve Third Session".
|
||||
|
||||
Regards,
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
{% endblock %}
|
||||
|
||||
{% block breadcrumbs %}{{ block.super }}
|
||||
» <a href="{% url telechat %}">Telechat</a>
|
||||
» <a href="{% url "telechat" %}">Telechat</a>
|
||||
{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
|
@ -25,7 +25,7 @@
|
|||
{% if section.docs %}
|
||||
<ul class="doc-list">
|
||||
{% for doc in section.docs %}
|
||||
<li><a href="{% url telechat_doc_detail date=date name=doc.name %}">{{ doc.name }}</a></li>
|
||||
<li><a href="{% url "telechat_doc_detail" date=date name=doc.name %}">{{ doc.name }}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% else %}
|
||||
|
@ -47,11 +47,11 @@
|
|||
{% if date %}
|
||||
<div id="telechat-nav">
|
||||
<ul id="list-nav">
|
||||
<li><a href="{% url telechat_roll_call date=date %}">Roll Call</a></li>
|
||||
<li><a href="{% url telechat_bash date=date %}">Bash Agenda</a></li>
|
||||
<li><a href="{% url telechat_minutes date=date %}">Minute Approval</a></li>
|
||||
<li><a href="{% url telechat_doc date=date %}">Main Agenda</a></li>
|
||||
<li><a href="{% url telechat_management date=date %}">Management Issues</a></li>
|
||||
<li><a href="{% url "telechat_roll_call" date=date %}">Roll Call</a></li>
|
||||
<li><a href="{% url "telechat_bash" date=date %}">Bash Agenda</a></li>
|
||||
<li><a href="{% url "telechat_minutes" date=date %}">Minute Approval</a></li>
|
||||
<li><a href="{% url "telechat_doc" date=date %}">Main Agenda</a></li>
|
||||
<li><a href="{% url "telechat_management" date=date %}">Management Issues</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
{% endif %}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{% if section_docs %}
|
||||
<ul class="doc-list">
|
||||
{% for doc in section_docs %}
|
||||
<li><a href="{% url telechat_doc_detail date=date name=doc.name %}">{{ doc.name }}</a></li>
|
||||
<li><a href="{% url "telechat_doc_detail" date=date name=doc.name %}">{{ doc.name }}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% else %}
|
||||
|
|
Loading…
Reference in a new issue