Port templates to new {% url %} syntax with quotes around the first parameter
- Legacy-Id: 6877
This commit is contained in:
parent
b2d69c5cbd
commit
7a86afe1ab
|
@ -37,30 +37,30 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|||
{% load ietf_filters community_tags %}
|
||||
<ul>
|
||||
<li class="sect first">Settings</li>
|
||||
<li><a href="{% url account_index %}">{% if request.user.is_authenticated %}Manage Account{% else %}New Account{% endif %}</a></li>
|
||||
<li><a href="{% url "account_index" %}">{% if request.user.is_authenticated %}Manage Account{% else %}New Account{% endif %}</a></li>
|
||||
<li><a href="{%url ietf.cookies.views.settings %}" rel="nofollow">Options</a></li>
|
||||
{% if user|has_role:"Area Director" %}
|
||||
<li class="sect">AD Dashboard</li>
|
||||
<li><a href="{% url docs_for_ad name=user.get_profile.full_name_as_key %}">My Documents</a></li>
|
||||
<li><a href="{% url ietf.iesg.views.agenda_documents %}">Next Telechat</a></li>
|
||||
<li><a href="{% url ietf.iesg.views.discusses %}">Discusses</a></li>
|
||||
<li><a href="{% url ietf.iesg.views.milestones_needing_review %}">Milestones</a></li>
|
||||
<li><a href="{% url "docs_for_ad" name=user.get_profile.full_name_as_key %}">My Documents</a></li>
|
||||
<li><a href="{% url "ietf.iesg.views.agenda_documents" %}">Next Telechat</a></li>
|
||||
<li><a href="{% url "ietf.iesg.views.discusses" %}">Discusses</a></li>
|
||||
<li><a href="{% url "ietf.iesg.views.milestones_needing_review" %}">Milestones</a></li>
|
||||
{% endif %}
|
||||
{% if user|has_role:"Secretariat" %}
|
||||
<li class="sect">Secretariat</li>
|
||||
<li><a href="/admin/iesg/telechatdate/">Telechat Dates</a></li>
|
||||
<li><a href="/admin/iesg/telechatagendaitem/">Management Items</a></li>
|
||||
<li><a href="{% url ietf.iesg.views.milestones_needing_review %}">Milestones</a></li>
|
||||
<li><a href="{% url ietf.sync.views.discrepancies %}">Sync discrepancies</a>
|
||||
<li><a href="{% url "ietf.iesg.views.milestones_needing_review" %}">Milestones</a></li>
|
||||
<li><a href="{% url "ietf.sync.views.discrepancies" %}">Sync discrepancies</a>
|
||||
{% endif %}
|
||||
{% streams_menu %}
|
||||
{% if user|has_role:"IANA" %}
|
||||
<li class="sect">IANA</li>
|
||||
<li><a href="{% url ietf.sync.views.discrepancies %}">Sync discrepancies</a></li>
|
||||
<li><a href="{% url "ietf.sync.views.discrepancies" %}">Sync discrepancies</a></li>
|
||||
{% endif %}
|
||||
{% if user|has_role:"RFC Editor" %}
|
||||
<li class="sect">RFC Editor</li>
|
||||
<li><a href="{% url ietf.sync.views.discrepancies %}">Sync discrepancies</a></li>
|
||||
<li><a href="{% url "ietf.sync.views.discrepancies" %}">Sync discrepancies</a></li>
|
||||
{% endif %}
|
||||
<li class="sect">Working Groups</li>
|
||||
|
||||
|
@ -73,8 +73,8 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|||
</div></div></li>
|
||||
|
||||
<li style="padding-top:0;"><a href="/wg/">Active WGs</a></li>
|
||||
<li><a href="{% url ietf.wginfo.views.chartering_wgs %}">Chartering WGs</a></li>
|
||||
<li><a href="{% url ietf.wginfo.views.bofs %}">BoFs</a></li>
|
||||
<li><a href="{% url "ietf.wginfo.views.chartering_wgs" %}">Chartering WGs</a></li>
|
||||
<li><a href="{% url "ietf.wginfo.views.bofs" %}">BoFs</a></li>
|
||||
<li><a href="http://tools.ietf.org/wg/concluded">Concluded WGs</a></li>
|
||||
<li><a href="http://www.ietf.org/list/nonwg.html">Non-WG Lists</a></li>
|
||||
|
||||
|
@ -84,13 +84,13 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|||
<li><form action="/doc/search/" method="get" style="padding-bottom:0;margin-bottom:0;"><input type="text" style="margin-left:10px; width:100px; border:1px solid #89d;" name="name" /><input type="hidden" name="activedrafts" value="on"/><input type="hidden" name="rfcs" value="on"/></form></li>
|
||||
<li>
|
||||
<div style="padding: 0 0 0 10px;">Streams:</div>
|
||||
<a style="padding: 0 0 0 20px;" href="{% url ietf.group.views_stream.streams %}iab/">IAB</a>
|
||||
<a style="padding: 0;" href="{% url ietf.group.views_stream.streams %}irtf/">IRTF</a>
|
||||
<a style="padding: 0;" href="{% url ietf.group.views_stream.streams %}ise/">ISE</a>
|
||||
<a style="padding: 0 0 0 20px;" href="{% url "ietf.group.views_stream.streams" %}iab/">IAB</a>
|
||||
<a style="padding: 0;" href="{% url "ietf.group.views_stream.streams" %}irtf/">IRTF</a>
|
||||
<a style="padding: 0;" href="{% url "ietf.group.views_stream.streams" %}ise/">ISE</a>
|
||||
</li>
|
||||
<li><a href="{% url submit_upload_submission %}">Submit a draft</a></li>
|
||||
<li><a href="{% url "submit_upload_submission" %}">Submit a draft</a></li>
|
||||
{% if user|has_role:"WG Chair" %}
|
||||
<li><a href="{% url submit_approvals %}">Approve a draft</a></li>
|
||||
<li><a href="{% url "submit_approvals" %}">Approve a draft</a></li>
|
||||
{% endif %}
|
||||
{% get_user_managed_lists user as community_lists %}
|
||||
{% if community_lists %}
|
||||
|
@ -102,7 +102,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|||
<li><a href="http://{{ request.get_host }}/accounts/login/?next={{request.get_full_path|urlencode}}" rel="nofollow">Sign in to track drafts</a></li>
|
||||
{% endif %}
|
||||
{% if user|has_role:"Area Director,Secretariat" %}
|
||||
<li><a href="{% url rfc_status_changes %}">RFC status changes</a></li>
|
||||
<li><a href="{% url "rfc_status_changes" %}">RFC status changes</a></li>
|
||||
{% endif %}
|
||||
|
||||
|
||||
|
|
|
@ -2,6 +2,6 @@
|
|||
{% if editable_streams %}
|
||||
<li class="sect">Streams</li>
|
||||
{% for stream in editable_streams %}
|
||||
<li{% if forloop.last %} style="margin-bottom: 2px;"{% endif %}><a href="{% url ietf.group.views_stream.stream_edit stream.slug %}">{{ stream.name }} stream</a></li>
|
||||
<li{% if forloop.last %} style="margin-bottom: 2px;"{% endif %}><a href="{% url "ietf.group.views_stream.stream_edit" stream.slug %}">{{ stream.name }} stream</a></li>
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
|
|
|
@ -47,7 +47,7 @@ In order to add some individual documents to your list you have to:
|
|||
<td>{{ doc.display_name }}</td>
|
||||
<td>{{ doc.get_state }}</td>
|
||||
<td><a href="{{ doc.get_absolute_url }}"</a>{{ doc.title }}</td>
|
||||
<td><a href="{% url community_remove_document cl.pk doc.pk %}">Remove</a></td>
|
||||
<td><a href="{% url "community_remove_document" cl.pk doc.pk %}">Remove</a></td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</table>
|
||||
|
@ -63,7 +63,7 @@ In order to add some individual documents to your list you have to:
|
|||
<td>{{ callable.description }}</td>
|
||||
<td>{{ callable.show_value }}</td>
|
||||
<td>{% with rule.cached_ids.count as count %}{{ count }} document{{ count|pluralize }}{% endwith %}</td>
|
||||
<td><a href="{% url community_remove_rule cl.pk rule.pk %}">Remove</a></td>
|
||||
<td><a href="{% url "community_remove_rule" cl.pk rule.pk %}">Remove</a></td>
|
||||
</tr>
|
||||
{% endwith %}
|
||||
{% endfor %}
|
||||
|
|
|
@ -3,7 +3,7 @@ Hello,
|
|||
|
||||
In order to complete your subscription for {% if significant %}significant {% endif %}changes on {{ clist.long_name }}, please follow this link or copy it and paste it in your web browser:
|
||||
|
||||
http://{{ domain }}{% if significant %}{% url confirm_significant_subscription clist.id to_email today auth %}{% else %}{% url confirm_subscription clist.id to_email today auth %}{% endif %}
|
||||
http://{{ domain }}{% if significant %}{% url "confirm_significant_subscription" clist.id to_email today auth %}{% else %}{% url "confirm_subscription" clist.id to_email today auth %}{% endif %}
|
||||
|
||||
Best regards,
|
||||
|
||||
|
|
|
@ -8,6 +8,6 @@
|
|||
You email address {{ email }} has been successfully subscribed to {{ cl.long_name }}
|
||||
</p>
|
||||
<p>
|
||||
<a href="{% url view_personal_list secret=cl.secret %}">Return to the list view</a>
|
||||
<a href="{% url "view_personal_list" secret=cl.secret %}">Return to the list view</a>
|
||||
</p>
|
||||
{% endblock %}
|
||||
|
|
|
@ -3,7 +3,7 @@ Hello,
|
|||
|
||||
In order to complete the cancelation of your subscription to {% if significant %}significant {% endif %}changes on {{ clist.long_name }}, please follow this link or copy it and paste it in your web browser:
|
||||
|
||||
http://{{ domain }}{% if significant %}{% url confirm_significant_unsubscription clist.id to_email today auth %}{% else %}{% url confirm_unsubscription clist.id to_email today auth %}{% endif %}
|
||||
http://{{ domain }}{% if significant %}{% url "confirm_significant_unsubscription" clist.id to_email today auth %}{% else %}{% url "confirm_unsubscription" clist.id to_email today auth %}{% endif %}
|
||||
|
||||
Best regards,
|
||||
|
||||
|
|
|
@ -24,7 +24,7 @@ form.add-comment .actions {
|
|||
<tr>
|
||||
<td></td>
|
||||
<td class="actions">
|
||||
<a href="{% url doc_history name=doc.name %}">Back</a>
|
||||
<a href="{% url "doc_history" name=doc.name %}">Back</a>
|
||||
<input type="submit" value="Add comment"/>
|
||||
</td>
|
||||
</tr>
|
||||
|
|
|
@ -29,7 +29,7 @@ form #id_approval_text {
|
|||
{% if user|has_role:"Secretariat" %}
|
||||
<p>
|
||||
{% if can_announce %}
|
||||
<a href="{% url doc_approve_ballot name=doc.name %}">Approve ballot</a>
|
||||
<a href="{% url "doc_approve_ballot" name=doc.name %}">Approve ballot</a>
|
||||
{% endif %}
|
||||
</p>
|
||||
{% endif %}
|
||||
|
|
|
@ -30,7 +30,7 @@ form.approve-ballot .announcement {
|
|||
</div>
|
||||
|
||||
<div class="actions">
|
||||
<a href="{% url doc_ballot_approvaltext name=doc.name %}">Back</a>
|
||||
<a href="{% url "doc_ballot_approvaltext" name=doc.name %}">Back</a>
|
||||
{% ifequal action "to_announcement_list" %}
|
||||
<input type="submit" value="Notify the RFC Editor, send out the announcement and close ballot"/>
|
||||
{% endifequal %}
|
||||
|
|
|
@ -38,7 +38,7 @@ form #id_last_call_text {
|
|||
{% if user|has_role:"Secretariat" %}
|
||||
<p>
|
||||
{% if can_make_last_call %}
|
||||
<a href="{% url doc_make_last_call name=doc.name %}">Make Last Call</a>
|
||||
<a href="{% url "doc_make_last_call" name=doc.name %}">Make Last Call</a>
|
||||
{% endif %}
|
||||
|
||||
</p>
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
<div class="actions">
|
||||
|
||||
{% if request.user|has_role:"Area Director" %}
|
||||
<a href="{% url ietf.doc.views_ballot.edit_position name=doc.name ballot_id=ballot_id %}" class="button" style="margin-right: 1em;">Edit Position</a>
|
||||
<a href="{% url "ietf.doc.views_ballot.edit_position" name=doc.name ballot_id=ballot_id %}" class="button" style="margin-right: 1em;">Edit Position</a>
|
||||
{% endif %}
|
||||
|
||||
<a href="" class="button close">Close</a>
|
||||
|
|
|
@ -29,7 +29,7 @@ Change the shepherding AD for {{titletext}}
|
|||
<tr>
|
||||
<td></td>
|
||||
<td class="actions">
|
||||
<a href="{% url doc_view name=doc.canonical_name %}">Back</a>
|
||||
<a href="{% url "doc_view" name=doc.canonical_name %}">Back</a>
|
||||
<input type="submit" value="Submit"/>
|
||||
</td>
|
||||
</tr>
|
||||
|
|
|
@ -33,7 +33,7 @@ Change the document shepherd for {{ doc.name }}-{{ doc.rev }}
|
|||
<tr>
|
||||
<td></td>
|
||||
<td class="actions">
|
||||
<a href="{% url doc_view name=doc.name %}">Back</a>
|
||||
<a href="{% url "doc_view" name=doc.name %}">Back</a>
|
||||
<input type="submit" value="Submit"/>
|
||||
</td>
|
||||
</tr>
|
||||
|
|
|
@ -36,7 +36,7 @@ form.change-state .actions {
|
|||
{% endfor %}
|
||||
<tr>
|
||||
<td colspan="2" class="actions">
|
||||
<a href="{% url doc_view name=doc.name %}">Back</a>
|
||||
<a href="{% url "doc_view" name=doc.name %}">Back</a>
|
||||
<input type="submit" value="Submit"/>
|
||||
</td>
|
||||
</tr>
|
||||
|
|
|
@ -30,7 +30,7 @@ form #id_announcement_text {
|
|||
{% endfor %}
|
||||
<tr>
|
||||
<td class="actions">
|
||||
<a href="{% url doc_view name=review.name %}">Back</a>
|
||||
<a href="{% url "doc_view" name=review.name %}">Back</a>
|
||||
<input type="submit" value="Send out the announcement and close the ballot"/>
|
||||
</td>
|
||||
</tr>
|
||||
|
|
|
@ -18,7 +18,7 @@ form.start-conflict-review .actions {
|
|||
{% block content %}
|
||||
<h1>Begin IETF conflict review for {{doc_to_review.canonical_name}}-{{doc_to_review.rev}}</h1>
|
||||
|
||||
<p class="helptext">For help on the initial state choice, see the <a href="{% url state_help type="conflict-review" %}">state table</a>.</p>
|
||||
<p class="helptext">For help on the initial state choice, see the <a href="{% url "state_help" type="conflict-review" %}">state table</a>.</p>
|
||||
|
||||
<form class="start-conflict-review" action="" method="post">
|
||||
<table>
|
||||
|
@ -34,7 +34,7 @@ form.start-conflict-review .actions {
|
|||
{% endfor %}
|
||||
<tr>
|
||||
<td colspan="2" class="actions">
|
||||
<a href="{% url doc_view name=doc_to_review.name %}">Back</a>
|
||||
<a href="{% url "doc_view" name=doc_to_review.name %}">Back</a>
|
||||
<input type="submit" value="Submit"/>
|
||||
</td>
|
||||
</tr>
|
||||
|
|
|
@ -30,7 +30,7 @@ Edit conflict review for {{ conflictdoc.canonical_name }}-{{ conflictdoc.rev }}
|
|||
<tr>
|
||||
<td></td>
|
||||
<td class="actions">
|
||||
<a href="{% url doc_view name=review.canonical_name %}">Back</a>
|
||||
<a href="{% url "doc_view" name=review.canonical_name %}">Back</a>
|
||||
<input type="submit" name="reset_text" value="Reset to Template Text"/>
|
||||
<input type="submit" name="submit_response" value="Submit"/>
|
||||
</td>
|
||||
|
|
|
@ -4,19 +4,19 @@
|
|||
{% if editable and user|has_role:"Area Director,Secretariat" %}
|
||||
<div class="ballot-actions">
|
||||
{% if user|has_role:"Area Director" %}
|
||||
<div class="action"><a href="{% url ietf.doc.views_ballot.edit_position name=doc.name,ballot_id=ballot.pk %}">Edit position</a></div>
|
||||
<div class="action"><a href="{% url "ietf.doc.views_ballot.edit_position" name=doc.name,ballot_id=ballot.pk %}">Edit position</a></div>
|
||||
{% endif %}
|
||||
|
||||
{% if doc.type_id == "draft" or doc.type_id == "conflrev" %}
|
||||
<div class="action">
|
||||
{% if deferred %}
|
||||
<div><a href="{% url doc_undefer_ballot name=doc.name %}">Undefer ballot</a></div>
|
||||
<div><a href="{% url "doc_undefer_ballot" name=doc.name %}">Undefer ballot</a></div>
|
||||
<div>Ballot deferred by {{ deferred.by }} on {{ deferred.time|date:"Y-m-d" }}.</div>
|
||||
{% else %}
|
||||
<div><a href="{% url doc_defer_ballot name=doc.name %}">Defer ballot</a></div>
|
||||
<div><a href="{% url "doc_defer_ballot" name=doc.name %}">Defer ballot</a></div>
|
||||
{% endif %}
|
||||
{% if user|has_role:"Secretariat" %}
|
||||
<div><a href="{% url doc_clear_ballot name=doc.name %}">Clear ballot</a></div>
|
||||
<div><a href="{% url "doc_clear_ballot" name=doc.name %}">Clear ballot</a></div>
|
||||
{% endif %}
|
||||
</div>
|
||||
{% endif %}
|
||||
|
@ -28,7 +28,7 @@
|
|||
<div class="position-group">
|
||||
<div class="heading"><span class="square position-{{ n.slug }}"></span> {{ n.name }}</div>
|
||||
{% for p in positions %}
|
||||
<div>{% if p.old_ad %}[{% endif %}<a{% if user|has_role:"Secretariat" %} href="{% url ietf.doc.views_ballot.edit_position name=doc.name,ballot_id=ballot.pk %}?ad={{ p.ad.pk }}" title="Click to edit the position of {{ p.ad.plain_name }}"{% endif %}>{{ p.ad.plain_name }}</a>{% if p.old_ad %}]{% endif %}{% if p.comment or p.discuss %} <a href="#{{ p.ad.plain_name|slugify }}"><img src="/images/comment.png" width="14" height="12" alt="*" border="0"/></a>{% endif %}</div>
|
||||
<div>{% if p.old_ad %}[{% endif %}<a{% if user|has_role:"Secretariat" %} href="{% url "ietf.doc.views_ballot.edit_position" name=doc.name,ballot_id=ballot.pk %}?ad={{ p.ad.pk }}" title="Click to edit the position of {{ p.ad.plain_name }}"{% endif %}>{{ p.ad.plain_name }}</a>{% if p.old_ad %}]{% endif %}{% if p.comment or p.discuss %} <a href="#{{ p.ad.plain_name|slugify }}"><img src="/images/comment.png" width="14" height="12" alt="*" border="0"/></a>{% endif %}</div>
|
||||
{% if p.old_positions %}<div class="was">(was {{ p.old_positions|join:", " }})</div>{% endif %}
|
||||
{% empty %}
|
||||
<i>none</i>
|
||||
|
@ -44,7 +44,7 @@
|
|||
<div class="other-ballots">
|
||||
Available ballots:
|
||||
{% for b in all_ballots %}
|
||||
<a{% if b != ballot %} href="{% url doc_ballot name=doc.name,ballot_id=b.pk %}"{% endif %}>{{ b.ballot_type.name }} ({{ b.rev }})</a>
|
||||
<a{% if b != ballot %} href="{% url "doc_ballot" name=doc.name,ballot_id=b.pk %}"{% endif %}>{{ b.ballot_type.name }} ({{ b.rev }})</a>
|
||||
{% endfor %}
|
||||
</div>
|
||||
{% endif %}
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
Snapshots:
|
||||
<span class="revisions">
|
||||
{% for rev in revisions %}
|
||||
<a {% if rev != doc.rev %}href="{% url doc_view name=doc.name %}{% if not forloop.last %}{{ rev }}/{% endif %}"{% endif %}>{{ rev }}</a>
|
||||
<a {% if rev != doc.rev %}href="{% url "doc_view" name=doc.name %}{% if not forloop.last %}{{ rev }}/{% endif %}"{% endif %}>{{ rev }}</a>
|
||||
{% endfor %}
|
||||
</span>
|
||||
</div>
|
||||
|
@ -25,7 +25,7 @@
|
|||
{% if snapshot %}Snapshot of{% endif %}
|
||||
{% if doc.get_state_slug != "approved" %}Proposed{% endif %}
|
||||
Charter for "{{ group.name }}"
|
||||
(<a {% if group.type.slug == "wg" %}href="{% url ietf.wginfo.views.group_charter acronym=group.acronym %}"{% endif %}>{{ group.acronym }}</a>) {{ group.type.name }}
|
||||
(<a {% if group.type.slug == "wg" %}href="{% url "ietf.wginfo.views.group_charter" acronym=group.acronym %}"{% endif %}>{{ group.acronym }}</a>) {{ group.type.name }}
|
||||
</div>
|
||||
|
||||
<table id="metatable" width="100%">
|
||||
|
@ -39,7 +39,7 @@
|
|||
<div>
|
||||
<a title="{{ doc.get_state.desc }}"
|
||||
{% if not snapshot and user|has_role:"Area Director,Secretariat" %}
|
||||
class="editlink" href="{% url charter_change_state name=doc.name %}"
|
||||
class="editlink" href="{% url "charter_change_state" name=doc.name %}"
|
||||
{% endif %}>
|
||||
{{ doc.get_state.name }}
|
||||
</a>
|
||||
|
@ -51,7 +51,7 @@
|
|||
<div class="telechat">
|
||||
<a
|
||||
{% if user|has_role:"Area Director,Secretariat" %}
|
||||
class="editlink" href="{% url charter_telechat_date name=doc.name %}"
|
||||
class="editlink" href="{% url "charter_telechat_date" name=doc.name %}"
|
||||
{% endif %}>
|
||||
{% if not telechat %}Not on agenda of IESG telechat{% else %}On agenda of {{ telechat.telechat_date|date:"Y-m-d" }} IESG telechat{% endif %}
|
||||
</a>
|
||||
|
@ -77,7 +77,7 @@
|
|||
|
||||
<tr>
|
||||
<td>Responsible AD:</td>
|
||||
<td><a {% if request.user|has_role:"Area Director,Secretariat" %}class="editlink" href="{% url charter_edit_ad name=doc.name %}"{% endif %}>{{ doc.ad|default:"none" }}</a> </td>
|
||||
<td><a {% if request.user|has_role:"Area Director,Secretariat" %}class="editlink" href="{% url "charter_edit_ad" name=doc.name %}"{% endif %}>{{ doc.ad|default:"none" }}</a> </td>
|
||||
</tr>
|
||||
|
||||
<tr><td colspan='2'><hr size='1' noshade /></td></tr>
|
||||
|
@ -85,7 +85,7 @@
|
|||
<tr>
|
||||
<td>Send notices to:</td>
|
||||
<td><a {% if user|has_role:"Area Director,Secretariat" %}
|
||||
class="editlink" href="{% url charter_edit_notify name=doc.name %}"
|
||||
class="editlink" href="{% url "charter_edit_notify" name=doc.name %}"
|
||||
{% endif %}>
|
||||
{{ doc.notify|default:"none" }}
|
||||
</a>
|
||||
|
@ -104,17 +104,17 @@
|
|||
<div class="actions">
|
||||
{% if not snapshot and user|has_role:"Area Director,Secretariat" %}
|
||||
{% if chartering %}
|
||||
{% url charter_startstop_process name=doc.name option='abandon' as abandon_url %}{% if abandon_url %}<a class="button" href="{{ abandon_url }}">Abandon Effort</a>{% endif %}
|
||||
{% url "charter_startstop_process" name=doc.name option='abandon' as abandon_url %}{% if abandon_url %}<a class="button" href="{{ abandon_url }}">Abandon Effort</a>{% endif %}
|
||||
|
||||
{% if request.user|has_role:"Secretariat" %}
|
||||
{% url charter_approve name=doc.name as approve_url %}{% if approve_url %}<a class="button" href="{{ approve_url }}">Approve Charter</a>{% endif %}
|
||||
{% url "charter_approve" name=doc.name as approve_url %}{% if approve_url %}<a class="button" href="{{ approve_url }}">Approve Charter</a>{% endif %}
|
||||
{% endif %}
|
||||
|
||||
{% else %}
|
||||
{% if group.state_id == "proposed" or group.state_id == "bof" %}
|
||||
{% url charter_submit name=doc.name option='initcharter' as start_url %}{% if start_url %}<a class="button" href="{{ start_url }}">Start Chartering</a>{% endif %}
|
||||
{% url "charter_submit" name=doc.name option='initcharter' as start_url %}{% if start_url %}<a class="button" href="{{ start_url }}">Start Chartering</a>{% endif %}
|
||||
{% else %}
|
||||
{% url charter_submit name=doc.name option='recharter' as recharter_url %}{% if recharter_url %}<a class="button" href="{{ recharter_url }}">Recharter</a>{% endif %}
|
||||
{% url "charter_submit" name=doc.name option='recharter' as recharter_url %}{% if recharter_url %}<a class="button" href="{{ recharter_url }}">Recharter</a>{% endif %}
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
|
||||
|
@ -127,7 +127,7 @@
|
|||
<h3>Charter {{ doc.canonical_name }}-{{ doc.rev }}
|
||||
|
||||
{% if not snapshot and user|has_role:"Area Director,Secretariat" and chartering and group.state_id != "conclude" %}
|
||||
<a class="edit" href="{% url charter_submit name=doc.name %}">Change charter text</a>
|
||||
<a class="edit" href="{% url "charter_submit" name=doc.name %}">Change charter text</a>
|
||||
{% endif %}
|
||||
</h3>
|
||||
|
||||
|
@ -140,7 +140,7 @@
|
|||
{% if not snapshot and chartering %}
|
||||
<h3>Proposed Milestones
|
||||
{% if user|has_role:"Area Director,Secretariat" %}
|
||||
<a class="edit" href="{% url wg_edit_charter_milestones acronym=doc.group.acronym %}">Edit charter milestones</a>
|
||||
<a class="edit" href="{% url "wg_edit_charter_milestones" acronym=doc.group.acronym %}">Edit charter milestones</a>
|
||||
{% endif %}
|
||||
</h3>
|
||||
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
Versions:
|
||||
<span class="revisions">
|
||||
{% for rev in revisions %}
|
||||
<a {% if rev != doc.rev %}href="{% url doc_view name=doc.name %}{% if not forloop.last %}{{ rev }}/{% endif %}"{% endif %}>{{ rev }}</a>
|
||||
<a {% if rev != doc.rev %}href="{% url "doc_view" name=doc.name %}{% if not forloop.last %}{{ rev }}/{% endif %}"{% endif %}>{{ rev }}</a>
|
||||
{% endfor %}
|
||||
</span>
|
||||
</div>
|
||||
|
@ -24,7 +24,7 @@
|
|||
<div>
|
||||
{% if snapshot %}Snapshot of{% endif %}
|
||||
{% if doc.get_state_slug not in approved_states %}Proposed{% endif %}
|
||||
IESG Conflict Review for the {{conflictdoc.stream}} document: <a href="{% url doc_view name=conflictdoc.canonical_name %}">{{ conflictdoc.canonical_name }}{% if conflictdoc.get_state_slug != 'rfc' %}-{{ conflictdoc.rev }}{% endif %}</a>
|
||||
IESG Conflict Review for the {{conflictdoc.stream}} document: <a href="{% url "doc_view" name=conflictdoc.canonical_name %}">{{ conflictdoc.canonical_name }}{% if conflictdoc.get_state_slug != 'rfc' %}-{{ conflictdoc.rev }}{% endif %}</a>
|
||||
</div>
|
||||
|
||||
<table id="metatable" width="100%">
|
||||
|
@ -32,12 +32,12 @@
|
|||
<td><a href="/doc/help/state/conflict-review/">Conflict Review State</a>:</td>
|
||||
<td>
|
||||
<div>
|
||||
<a title="{{ doc.get_state.desc }}"{% if not snapshot and user|has_role:"Area Director,Secretariat" %} class="editlink" href="{% url conflict_review_change_state name=doc.name %}"{% endif %}>{{ doc.get_state.name }}</a>
|
||||
<a title="{{ doc.get_state.desc }}"{% if not snapshot and user|has_role:"Area Director,Secretariat" %} class="editlink" href="{% url "conflict_review_change_state" name=doc.name %}"{% endif %}>{{ doc.get_state.name }}</a>
|
||||
|
||||
{% if not snapshot and user|has_role:"Area Director,Secretariat" %}
|
||||
|
||||
{% if request.user|has_role:"Secretariat" %}{% if doc.get_state_slug = 'appr-reqnopub-pend' or doc.get_state_slug = 'appr-noprob-pend' %}
|
||||
- <a href="{% url conflict_review_approve name=doc.name %}">Approve conflict review</a>
|
||||
- <a href="{% url "conflict_review_approve" name=doc.name %}">Approve conflict review</a>
|
||||
{% endif %}{% endif %}
|
||||
|
||||
{% endif %}
|
||||
|
@ -49,7 +49,7 @@
|
|||
<td>Telechat Date:</td>
|
||||
<td>
|
||||
<a {% if not snapshot and user|has_role:"Area Director,Secretariat" and doc.get_state_slug not in approved_states %}
|
||||
class="editlink" href="{% url conflict_review_telechat_date name=doc.name %}"
|
||||
class="editlink" href="{% url "conflict_review_telechat_date" name=doc.name %}"
|
||||
{%endif%} >
|
||||
{% if not telechat %}Not on agenda of an IESG telechat{% else %}On agenda of {{ telechat.telechat_date|date:"Y-m-d" }} IESG telechat{% if doc.returning_item %} (returning item){% endif %}{% endif %}
|
||||
</a>
|
||||
|
@ -67,7 +67,7 @@
|
|||
<td>Shepherding AD:</td>
|
||||
<td>
|
||||
<a {% if not snapshot and user|has_role:"Area Director,Secretariat" and doc.get_state_slug not in approved_states %}
|
||||
class="editlink" href="{% url conflict_review_ad name=doc.name %}"
|
||||
class="editlink" href="{% url "conflict_review_ad" name=doc.name %}"
|
||||
{% endif %}
|
||||
>
|
||||
{{doc.ad}}
|
||||
|
@ -79,7 +79,7 @@
|
|||
<td>Send notices to:</td>
|
||||
<td>
|
||||
<a {% if not snapshot and user|has_role:"Area Director,Secretariat" and doc.get_state_slug not in approved_states %}
|
||||
class="editlink" href="{% url conflict_review_notices name=doc.name %}"
|
||||
class="editlink" href="{% url "conflict_review_notices" name=doc.name %}"
|
||||
{% endif %}
|
||||
>
|
||||
{{doc.notify}}
|
||||
|
@ -103,7 +103,7 @@
|
|||
<h3>Conflict Review for {{ conflictdoc.name }}-{{ conflictdoc.rev }}
|
||||
|
||||
{% if not snapshot and user|has_role:"Area Director,Secretariat" and doc.get_state_slug != 'apprsent' %}
|
||||
<a class="edit" href="{% url conflict_review_submit name=doc.name %}">Change conflict review text</a>
|
||||
<a class="edit" href="{% url "conflict_review_submit" name=doc.name %}">Change conflict review text</a>
|
||||
{% endif %}
|
||||
</h3>
|
||||
|
||||
|
|
|
@ -37,7 +37,7 @@
|
|||
|
||||
{% if replaces or can_edit_stream_info %}
|
||||
<div>
|
||||
<a{% if can_edit_stream_info %} class="editlink" href="{% url doc_change_replaces name=doc.name %}"{% endif %}>
|
||||
<a{% if can_edit_stream_info %} class="editlink" href="{% url "doc_change_replaces" name=doc.name %}"{% endif %}>
|
||||
Replaces: {{ replaces|join:", "|urlize_ietf_docs|default:"None" }}
|
||||
</a>
|
||||
</div>
|
||||
|
@ -49,7 +49,7 @@
|
|||
<tr>
|
||||
<td>Document stream:</td>
|
||||
<td>
|
||||
<a {% if can_change_stream %} class="editlink" href="{% url doc_change_stream name=doc.name %}"{% endif %}>
|
||||
<a {% if can_change_stream %} class="editlink" href="{% url "doc_change_stream" name=doc.name %}"{% endif %}>
|
||||
{{ doc.stream|default:"No stream defined" }}
|
||||
</a>
|
||||
</td>
|
||||
|
@ -69,7 +69,7 @@
|
|||
<tr>
|
||||
<td>Intended RFC status:</td>
|
||||
<td>
|
||||
<a {% if can_edit or can_edit_stream_info %}class="editlink" href="{% url doc_change_intended_status name=doc.name %}"{% endif %}>
|
||||
<a {% if can_edit or can_edit_stream_info %}class="editlink" href="{% url "doc_change_intended_status" name=doc.name %}"{% endif %}>
|
||||
{{ doc.intended_std_level|default:"Unknown" }}</a>
|
||||
</td>
|
||||
</tr>
|
||||
|
@ -100,7 +100,7 @@
|
|||
{% if doc.stream %}
|
||||
<td>{{ doc.stream }} State:</td>
|
||||
<td class="stream-state">
|
||||
<a {% if doc.stream and can_edit_stream_info %}class="editlink" href="{% url doc_change_stream_state name=doc.name state_type=stream_state_type_slug %}"{% endif %}>
|
||||
<a {% if doc.stream and can_edit_stream_info %}class="editlink" href="{% url "doc_change_stream_state" name=doc.name state_type=stream_state_type_slug %}"{% endif %}>
|
||||
{{ stream_state|default:"(None)" }}
|
||||
</a>
|
||||
|
||||
|
@ -121,7 +121,7 @@
|
|||
<tr>
|
||||
<td>Consensus:</td>
|
||||
<td>
|
||||
<a title="Whether the document is the result of a community consensus process as defined in RFC 5741" {% if can_edit or can_edit_stream_info %}class="editlink" href="{% url doc_edit_consensus name=doc.name %}"{% endif %}>
|
||||
<a title="Whether the document is the result of a community consensus process as defined in RFC 5741" {% if can_edit or can_edit_stream_info %}class="editlink" href="{% url "doc_edit_consensus" name=doc.name %}"{% endif %}>
|
||||
{{ consensus }}
|
||||
</a>
|
||||
</td>
|
||||
|
@ -131,7 +131,7 @@
|
|||
<tr>
|
||||
<td>Document shepherd:</td>
|
||||
<td>
|
||||
<a {% if can_edit_stream_info %}class="editlink" href="{% url doc_edit_shepherd name=doc.name %}"{% endif %}>
|
||||
<a {% if can_edit_stream_info %}class="editlink" href="{% url "doc_edit_shepherd" name=doc.name %}"{% endif %}>
|
||||
{{ doc.shepherd|default:"No shepherd assigned" }}
|
||||
</a>
|
||||
</td>
|
||||
|
@ -141,7 +141,7 @@
|
|||
<tr>
|
||||
<td>Shepherd Write-Up:</td>
|
||||
<td>
|
||||
<a {% if can_edit_shepherd_writeup %}class="editlink"{% endif %} href="{% url doc_shepherd_writeup name=doc.name %}">
|
||||
<a {% if can_edit_shepherd_writeup %}class="editlink"{% endif %} href="{% url "doc_shepherd_writeup" name=doc.name %}">
|
||||
{% if shepherd_writeup %}Last changed {{ shepherd_writeup.time|date:"Y-m-d"}}{% else %}(None){% endif %}
|
||||
</a>
|
||||
</td>
|
||||
|
@ -157,20 +157,20 @@
|
|||
{% endif %}
|
||||
|
||||
<tr>
|
||||
<td><a href="{% url state_help "draft-iesg" %}">IESG State</a>:</td>
|
||||
<td><a href="{% url "state_help" "draft-iesg" %}">IESG State</a>:</td>
|
||||
<td>
|
||||
<a {% if iesg_state and can_edit %}class="editlink" href="{% url doc_change_state name=doc.name %}"{% endif %}>
|
||||
<a {% if iesg_state and can_edit %}class="editlink" href="{% url "doc_change_state" name=doc.name %}"{% endif %}>
|
||||
{{ iesg_state_summary|default:"I-D Exists" }}</a>
|
||||
|
||||
{% if iana_review_state %}
|
||||
<div>IANA Review State:
|
||||
<a {% if can_edit_iana_state %}class="editlink" href="{% url doc_change_iana_state name=doc.name state_type="iana-review" %}"{% endif %}>{{ iana_review_state }}</a>
|
||||
<a {% if can_edit_iana_state %}class="editlink" href="{% url "doc_change_iana_state" name=doc.name state_type="iana-review" %}"{% endif %}>{{ iana_review_state }}</a>
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
{% if iana_review_state %}
|
||||
<div>IANA Action State:
|
||||
<a {% if can_edit_iana_state %}class="editlink" href="{% url doc_change_iana_state name=doc.name state_type="iana-action" %}"{% endif %}>{{ iana_action_state }}</a>
|
||||
<a {% if can_edit_iana_state %}class="editlink" href="{% url "doc_change_iana_state" name=doc.name state_type="iana-action" %}"{% endif %}>{{ iana_action_state }}</a>
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
|
@ -181,7 +181,7 @@
|
|||
{% endif %}
|
||||
|
||||
<div class="telechat">
|
||||
<a {% if can_edit %}class="editlink" href="{% url doc_change_telechat_date name=doc.name %}"{% endif %}>
|
||||
<a {% if can_edit %}class="editlink" href="{% url "doc_change_telechat_date" name=doc.name %}"{% endif %}>
|
||||
|
||||
{% if telechat %}
|
||||
On agenda of {{ telechat.telechat_date }} IESG telechat {% if telechat.returning_item %} (returning item){% endif %}
|
||||
|
@ -198,7 +198,7 @@
|
|||
<tr>
|
||||
<td>Responsible AD:</td>
|
||||
<td>
|
||||
<a {% if can_edit %}class="editlink" href="{% url doc_change_ad name=doc.name %}"{% endif %}>
|
||||
<a {% if can_edit %}class="editlink" href="{% url "doc_change_ad" name=doc.name %}"{% endif %}>
|
||||
{{ doc.ad|default:"(None)" }}
|
||||
</a>
|
||||
</td>
|
||||
|
@ -209,7 +209,7 @@
|
|||
<tr>
|
||||
<td>IESG Note:</td>
|
||||
<td>
|
||||
<a {% if can_edit %}class="editlink" href="{% url doc_change_iesg_note name=doc.name %}"{% endif %}>
|
||||
<a {% if can_edit %}class="editlink" href="{% url "doc_change_iesg_note" name=doc.name %}"{% endif %}>
|
||||
{{ doc.note|default:"(None)"|linebreaksbr }}
|
||||
</a>
|
||||
</td>
|
||||
|
@ -220,7 +220,7 @@
|
|||
<tr>
|
||||
<td>Send notices to:</td>
|
||||
<td>
|
||||
<a {% if can_edit %}class="editlink" href="{% url doc_change_notify name=doc.name %}"{% endif %}>
|
||||
<a {% if can_edit %}class="editlink" href="{% url "doc_change_notify" name=doc.name %}"{% endif %}>
|
||||
{{ doc.notify|default:"No addresses provided"}}
|
||||
</a>
|
||||
</td>
|
||||
|
@ -231,7 +231,7 @@
|
|||
|
||||
<div class="links">
|
||||
<a href="mailto:{{ doc.name }}@tools.ietf.org?subject=Mail%20regarding%20{{ doc.name }}" rel="nofollow">Email Authors</a>
|
||||
| <a href="{% url ipr_search %}?option=document_search&id={{ doc.name }}" rel="nofollow">IPR Disclosures{% if doc.related_ipr %} ({{doc.related_ipr|length}}){% endif %}</a>
|
||||
| <a href="{% url "ipr_search" %}?option=document_search&id={{ doc.name }}" rel="nofollow">IPR Disclosures{% if doc.related_ipr %} ({{doc.related_ipr|length}}){% endif %}</a>
|
||||
| <a href="http://www.fenron.net/~fenner/ietf/deps/index.cgi?dep={{ name }}" rel="nofollow">Dependencies to this document</a>
|
||||
| <a href="http://tools.ietf.org/idnits?url=http://tools.ietf.org/id/{{ doc.filename_with_rev }}" rel="nofollow" target="_blank">Check nits</a>
|
||||
| <a href="/feed/document-changes/{{ name }}/">History feed</a>
|
||||
|
@ -240,15 +240,15 @@
|
|||
| <a href="https://www.iesg.org/bin/c5i?mid=6&rid=77&target={{ doc.name }}" rel="nofollow" target="_blank">Search Mailing Lists (ARO)</a>
|
||||
{% endif %}
|
||||
{% if show_add_to_list and user.is_authenticated %}
|
||||
| <span class="search-results"><span class="addtolist"><a href="{% url community_add_document doc.name %}" title="Add to your personal ID list"><img src="/images/add_to_list.png" alt="Add to your personal ID list"/>Track this document</a></span></span>
|
||||
| <span class="search-results"><span class="addtolist"><a href="{% url "community_add_document" doc.name %}" title="Add to your personal ID list"><img src="/images/add_to_list.png" alt="Add to your personal ID list"/>Track this document</a></span></span>
|
||||
{% endif %}
|
||||
</div>
|
||||
|
||||
{% if can_edit and iesg_state %}
|
||||
<div class="links">
|
||||
<a href="{% url doc_ballot_lastcall name=doc.name %}">Last Call Text</a>
|
||||
| <a href="{% url doc_ballot_writeupnotes name=doc.name %}">Ballot Text</a>
|
||||
| <a href="{% url doc_ballot_approvaltext name=doc.name %}">Announcement Text</a>
|
||||
<a href="{% url "doc_ballot_lastcall" name=doc.name %}">Last Call Text</a>
|
||||
| <a href="{% url "doc_ballot_writeupnotes" name=doc.name %}">Ballot Text</a>
|
||||
| <a href="{% url "doc_ballot_approvaltext" name=doc.name %}">Announcement Text</a>
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
|
|
|
@ -56,7 +56,7 @@
|
|||
<h2>Document history</h2>
|
||||
{% if user|has_role:"Area Director,Secretariat,IANA,RFC Editor" %}
|
||||
<div class="history-actions">
|
||||
<a class="button" href="{% url doc_add_comment name=doc.name %}">Add comment</a>
|
||||
<a class="button" href="{% url "doc_add_comment" name=doc.name %}">Add comment</a>
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
Versions:
|
||||
<span class="revisions">
|
||||
{% for rev in revisions %}
|
||||
<a {% if rev != doc.rev %}href="{% url doc_view name=doc.name %}{% if not forloop.last %}{{ rev }}/{% endif %}"{% endif %}>{{ rev }}</a>
|
||||
<a {% if rev != doc.rev %}href="{% url "doc_view" name=doc.name %}{% if not forloop.last %}{{ rev }}/{% endif %}"{% endif %}>{{ rev }}</a>
|
||||
{% endfor %}
|
||||
</span>
|
||||
</div>
|
||||
|
@ -36,15 +36,15 @@
|
|||
</tr>
|
||||
{% endfor %}
|
||||
<tr>
|
||||
<td><a href="{% url state_help type="status-change" %}">Review State</a>:</td>
|
||||
<td><a href="{% url "state_help" type="status-change" %}">Review State</a>:</td>
|
||||
<td>
|
||||
<div>
|
||||
<a title="{{ doc.get_state.desc }}"{% if not snapshot and user|has_role:"Area Director,Secretariat" %} class="editlink" href="{% url status_change_change_state name=doc.name %}"{% endif %}>{{ doc.get_state.name }}</a>
|
||||
<a title="{{ doc.get_state.desc }}"{% if not snapshot and user|has_role:"Area Director,Secretariat" %} class="editlink" href="{% url "status_change_change_state" name=doc.name %}"{% endif %}>{{ doc.get_state.name }}</a>
|
||||
|
||||
{% if not snapshot and user|has_role:"Area Director,Secretariat" %}
|
||||
|
||||
{% if request.user|has_role:"Secretariat" %}{% if doc.get_state_slug = 'appr-pend' %}
|
||||
- <a href="{% url status_change_approve name=doc.name %}">Approve RFC status changes</a>
|
||||
- <a href="{% url "status_change_approve" name=doc.name %}">Approve RFC status changes</a>
|
||||
{% endif %}{% endif %}
|
||||
|
||||
{% endif %}
|
||||
|
@ -57,7 +57,7 @@
|
|||
<td>
|
||||
{% if not snapshot %}
|
||||
<a {% if not snapshot and user|has_role:"Area Director,Secretariat" and doc.get_state_slug not in approved_states %}
|
||||
class="editlink" href="{% url status_change_telechat_date name=doc.name %}"
|
||||
class="editlink" href="{% url "status_change_telechat_date" name=doc.name %}"
|
||||
{%endif%} >
|
||||
{% if not telechat %}Not on agenda of an IESG telechat{% else %}On agenda of {{ telechat.telechat_date|date:"Y-m-d" }} IESG telechat{% if doc.returning_item %} (returning item){% endif %}{% endif %}
|
||||
</a>
|
||||
|
@ -76,7 +76,7 @@
|
|||
<td>Shepherding AD:</td>
|
||||
<td>
|
||||
<a {% if not snapshot and user|has_role:"Area Director,Secretariat" and doc.get_state_slug not in approved_states %}
|
||||
class="editlink" href="{% url status_change_ad name=doc.name %}"
|
||||
class="editlink" href="{% url "status_change_ad" name=doc.name %}"
|
||||
{% endif %}
|
||||
>
|
||||
{{doc.ad}}
|
||||
|
@ -88,7 +88,7 @@
|
|||
<td>Send notices to:</td>
|
||||
<td>
|
||||
<a {% if not snapshot and user|has_role:"Area Director,Secretariat" and doc.get_state_slug not in approved_states %}
|
||||
class="editlink" href="{% url status_change_notices name=doc.name %}"
|
||||
class="editlink" href="{% url "status_change_notices" name=doc.name %}"
|
||||
{% endif %}
|
||||
>
|
||||
{{doc.notify}}
|
||||
|
@ -104,12 +104,12 @@
|
|||
<tr><td colspan="2">
|
||||
<span id="doc_edit_affected_rfc_list_button" class="yui-button yui-link-button" style="margin-left:2px;">
|
||||
<span class="first-child">
|
||||
<a href="{% url status_change_relations name=doc.name %}">Edit Affected RFC List</a>
|
||||
<a href="{% url "status_change_relations" name=doc.name %}">Edit Affected RFC List</a>
|
||||
</span>
|
||||
</span>
|
||||
<span id="doc_edit_last_call_text" class="yui-button yui-link-button" style="margin-left:2px;">
|
||||
<span class="first-child">
|
||||
<a href="{% url status_change_last_call name=doc.name %}">Edit Last Call Text</a>
|
||||
<a href="{% url "status_change_last_call" name=doc.name %}">Edit Last Call Text</a>
|
||||
</span>
|
||||
</span>
|
||||
</td><tr/>
|
||||
|
@ -126,7 +126,7 @@
|
|||
<h3>RFC Status Change : {{ doc.title }}
|
||||
|
||||
{% if not snapshot and user|has_role:"Area Director,Secretariat" and doc.get_state_slug != 'apprsent' %}
|
||||
<a class="edit" href="{% url status_change_submit name=doc.name %}">Change status change text</a>
|
||||
<a class="edit" href="{% url "status_change_submit" name=doc.name %}">Change status change text</a>
|
||||
{% endif %}
|
||||
</h3>
|
||||
|
||||
|
|
|
@ -29,7 +29,7 @@ Change the shepherding AD for {{ doc.name }}-{{ doc.rev }}
|
|||
<tr>
|
||||
<td></td>
|
||||
<td class="actions">
|
||||
<a href="{% url doc_view name=doc.name %}">Back</a>
|
||||
<a href="{% url "doc_view" name=doc.name %}">Back</a>
|
||||
<input type="submit" value="Submit"/>
|
||||
</td>
|
||||
</tr>
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
<tr>
|
||||
<td></td>
|
||||
<td class="actions">
|
||||
<a href="{% url doc_view name=doc.name %}">Back</a>
|
||||
<a href="{% url "doc_view" name=doc.name %}">Back</a>
|
||||
<input type="submit" value="Submit"/>
|
||||
</td>
|
||||
</tr>
|
||||
|
|
|
@ -32,7 +32,7 @@ Edit notification addresses for {{ doc.canonical_name }}-{{ doc.rev }}
|
|||
<tr>
|
||||
<td></td>
|
||||
<td class="actions">
|
||||
<a href="{% url doc_view name=doc.canonical_name %}">Back</a>
|
||||
<a href="{% url "doc_view" name=doc.canonical_name %}">Back</a>
|
||||
<input type="submit" name="save_addresses" value="Save" />
|
||||
<input type="submit" name="regenerate_addresses" value="Regenerate Address List" />
|
||||
</td>
|
||||
|
|
|
@ -55,7 +55,7 @@
|
|||
}
|
||||
|
||||
setup_ajax($("#id_replaces"), $("#replaces_list"),
|
||||
$("#id_replaces_search"), "{% url doc_ajax_internet_draft %}");
|
||||
$("#id_replaces_search"), "{% url "doc_ajax_internet_draft" %}");
|
||||
});
|
||||
</script>
|
||||
{% endblock %}
|
||||
|
|
|
@ -29,7 +29,7 @@ Edit shepherd writeup for {{ doc.canonical_name }}-{{ doc.rev }}
|
|||
<tr>
|
||||
<td></td>
|
||||
<td class="actions">
|
||||
<a href="{% url doc_view name=doc.canonical_name %}">Back</a>
|
||||
<a href="{% url "doc_view" name=doc.canonical_name %}">Back</a>
|
||||
<input type="submit" name="reset_text" value="Reset to Template Text"/>
|
||||
<input type="submit" name="submit_response" value="Submit"/>
|
||||
</td>
|
||||
|
|
|
@ -24,7 +24,7 @@ form.change-state .actions {
|
|||
{% block content %}
|
||||
<h1>Change state of {{ doc }}</h1>
|
||||
|
||||
<p class="helptext">For help on the states, see the <a href="{% url state_help type="draft-iesg" %}">state table</a>.</p>
|
||||
<p class="helptext">For help on the states, see the <a href="{% url "state_help" type="draft-iesg" %}">state table</a>.</p>
|
||||
|
||||
<form class="change-state" action="" method="post">
|
||||
<table>
|
||||
|
@ -68,7 +68,7 @@ form.change-state .actions {
|
|||
</form>
|
||||
<p>
|
||||
But the ballot for this document has not yet been issued.
|
||||
<a href="{% url doc_ballot_writeupnotes name=doc.name %}">Edit Ballot Text</a>
|
||||
<a href="{% url "doc_ballot_writeupnotes" name=doc.name %}">Edit Ballot Text</a>
|
||||
</p>
|
||||
</div>
|
||||
{% endif %}
|
||||
|
|
|
@ -28,7 +28,7 @@ form.change-state ul li label { cursor: pointer; }
|
|||
{% block content %}
|
||||
<h1>Change {{ state_type.label }} of {{ doc }}</h1>
|
||||
|
||||
<p class="intro">For help on the states, see the <a href="{% url state_help type=state_type.slug %}">state table</a>.</p>
|
||||
<p class="intro">For help on the states, see the <a href="{% url "state_help" type=state_type.slug %}">state table</a>.</p>
|
||||
|
||||
{% if next_states %}
|
||||
<div class="next-states">
|
||||
|
|
|
@ -39,7 +39,7 @@ form.edit-info .actions {
|
|||
<td>{{ field }}
|
||||
{% ifequal field.name "telechat_date" %}
|
||||
{% if not ballot_issued %}
|
||||
<span id="ballotwarn"> A ballot for this document has not been issued: <a href="{% url doc_ballot_writeupnotes name=doc.name %}">Edit Ballot Text</a></span>
|
||||
<span id="ballotwarn"> A ballot for this document has not been issued: <a href="{% url "doc_ballot_writeupnotes" name=doc.name %}">Edit Ballot Text</a></span>
|
||||
{% endif %}
|
||||
{{ form.returning_item }} {{ form.returning_item.label_tag }} {{ form.returning_item.errors }}
|
||||
{% endifequal %}
|
||||
|
|
|
@ -20,7 +20,7 @@ form.telechat-date td.actions {
|
|||
<tr>
|
||||
<td></td>
|
||||
<td class="actions">
|
||||
<a href="{% url doc_view name=doc.name %}">Back</a>
|
||||
<a href="{% url "doc_view" name=doc.name %}">Back</a>
|
||||
<input type="submit" value="Save"/>
|
||||
</td>
|
||||
</tr>
|
||||
|
|
|
@ -27,7 +27,7 @@ href="http://www.rfc-editor.org/indsubs.html">guidelines</a>.</p>
|
|||
<tr><td style="vertical-align: top">Message:</td> <td>{{ form.body }} {{ form.body.errors }}</td></tr>
|
||||
<tr class="actions"><td></td>
|
||||
<td>
|
||||
<a href="{% url doc_view name=doc.name %}">Back</a>
|
||||
<a href="{% url "doc_view" name=doc.name %}">Back</a>
|
||||
<input name="reset" type="submit" value="Reset"/>
|
||||
<input type="submit" value="Send request to the RFC Editor"/>
|
||||
</td>
|
||||
|
|
|
@ -43,7 +43,7 @@ th.date, td.date { text-align: left; padding-right: 0.5em; white-space: nowrap;
|
|||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td><a href="{% url doc_view doc.name %}">{{ doc.name }}</a></td>
|
||||
<td><a href="{% url "doc_view" doc.name %}">{{ doc.name }}</a></td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
|
|
|
@ -20,7 +20,7 @@ form.telechat-date td.actions {
|
|||
<tr>
|
||||
<td></td>
|
||||
<td class="actions">
|
||||
<a href="{% url doc_view name=doc.name %}">Back</a>
|
||||
<a href="{% url "doc_view" name=doc.name %}">Back</a>
|
||||
<input type="submit" value="Save"/>
|
||||
</td>
|
||||
</tr>
|
||||
|
|
|
@ -61,7 +61,7 @@ td.ietf-main-intro { width:200px; background:#fff5df; padding:8px; border:1px so
|
|||
The IETF Datatracker is the IETF's web system for managing information
|
||||
about:
|
||||
<ul>
|
||||
<li><a href="{% url doc_search %}">Internet-Drafts and RFCs</a></li>
|
||||
<li><a href="{% url "doc_search" %}">Internet-Drafts and RFCs</a></li>
|
||||
<li><a href="/ipr/">IPR disclosures</a></li>
|
||||
<li><a href="/liaison/">Liaison statements</a></li>
|
||||
<li><a href="/meeting/agenda/">Meeting agenda</a> and <a href="/meeting/">session agendas/slides/minutes</a></li>
|
||||
|
|
|
@ -12,9 +12,9 @@
|
|||
|
||||
<p>This page lists all active Internet-Drafts, grouped by responsible
|
||||
group. For normal use, it is recommended to use the
|
||||
<a href="{% url doc_search %}">search page</a>.</p>
|
||||
<a href="{% url "doc_search" %}">search page</a>.</p>
|
||||
|
||||
<p>There is also an <a href="{% url index_all_drafts %}">index of all
|
||||
<p>There is also an <a href="{% url "index_all_drafts" %}">index of all
|
||||
Internet-Drafts</a> (that page also lists some machine-readable files
|
||||
for download).</p>
|
||||
|
||||
|
|
|
@ -7,10 +7,10 @@
|
|||
|
||||
<p>This page lists all Internet-Drafts and RFCs. The main purpose of
|
||||
this page is to ensure all pages can be found by search engines. For
|
||||
normal use, it is recommended to use the <a href="{% url doc_search %}">search
|
||||
normal use, it is recommended to use the <a href="{% url "doc_search" %}">search
|
||||
page</a>.</p>
|
||||
|
||||
<p>There's also an <a href="{% url index_active_drafts %}">index of
|
||||
<p>There's also an <a href="{% url "index_active_drafts" %}">index of
|
||||
active Internet-Drafts</a> with more information.</p>
|
||||
|
||||
<p>In addition, the following files are available for download:</p>
|
||||
|
|
|
@ -32,7 +32,7 @@ Edit notification addresses for {{titletext}}
|
|||
<tr>
|
||||
<td></td>
|
||||
<td class="actions">
|
||||
<a href="{% url doc_view name=doc.canonical_name %}">Back</a>
|
||||
<a href="{% url "doc_view" name=doc.canonical_name %}">Back</a>
|
||||
<input type="submit" value="Submit"/>
|
||||
</td>
|
||||
</tr>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<td class="ipr">
|
||||
{% if doc.type_id == "draft" and doc.ipr %}
|
||||
<a href="{% url ipr_search %}?option=document_search&id={{ doc.canonical_name }}" rel="nofollow">IPR: {{ doc.ipr|length }}</a>
|
||||
<a href="{% url "ipr_search" %}?option=document_search&id={{ doc.canonical_name }}" rel="nofollow">IPR: {{ doc.ipr|length }}</a>
|
||||
{% endif %}
|
||||
</td>
|
||||
|
|
|
@ -32,7 +32,7 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|||
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
{% endcomment %}
|
||||
|
||||
<form id="search_form" class="search_form" action="{% url doc_search %}" method="get">
|
||||
<form id="search_form" class="search_form" action="{% url "doc_search" %}" method="get">
|
||||
|
||||
<div class="search_field">
|
||||
<label>Name/number/title:</label> {{ form.name }}
|
||||
|
|
|
@ -36,7 +36,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|||
<tr class="{{ forloop.counter|divisibleby:2|yesno:"oddrow,evenrow" }}">
|
||||
{% if show_add_to_list and user.is_authenticated %}
|
||||
<td class="addtolist">
|
||||
<a href="{% url community_add_document doc.name %}" title="Add to your personal ID list"><img src="/images/add_to_list.png" alt="Add to your personal ID list" /></a>
|
||||
<a href="{% url "community_add_document" doc.name %}" title="Add to your personal ID list"><img src="/images/add_to_list.png" alt="Add to your personal ID list" /></a>
|
||||
</td>
|
||||
{% endif %}
|
||||
<td class="doc">
|
||||
|
@ -65,7 +65,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|||
|
||||
<td class="ipr">
|
||||
{% if doc.iprs %}
|
||||
<a href="{% url ipr_search %}?option=document_search&id={{ doc.name }}">{{ doc.iprs|length }}</a>
|
||||
<a href="{% url "ipr_search" %}?option=document_search&id={{ doc.name }}">{{ doc.iprs|length }}</a>
|
||||
{% endif %}
|
||||
</td>
|
||||
|
||||
|
|
|
@ -16,10 +16,10 @@ Shepherd writeup for {{ doc.canonical_name }}-{{ doc.rev }}
|
|||
|
||||
<pre style="border:1px solid black;padding:5px;">{{writeup}}</pre>
|
||||
|
||||
<a href="{% url doc_view name=doc.name %}">Back</a>
|
||||
<a href="{% url "doc_view" name=doc.name %}">Back</a>
|
||||
|
||||
{% if can_edit %}
|
||||
<span id="doc_edit_shepherd_writeup" class="yui-button yui-link-button" style="margin-left:2px;">{% url doc_edit_shepherd_writeup name=doc.name as doc_edit_url %}{% if doc_edit_url %}<span class="first-child"><a href="{{doc_edit_url}}">Edit</a></span>{% endif %}</span>
|
||||
<span id="doc_edit_shepherd_writeup" class="yui-button yui-link-button" style="margin-left:2px;">{% url "doc_edit_shepherd_writeup" name=doc.name as doc_edit_url %}{% if doc_edit_url %}<span class="first-child"><a href="{{doc_edit_url}}">Edit</a></span>{% endif %}</span>
|
||||
{% endif %}
|
||||
|
||||
{% endblock %}
|
||||
|
|
|
@ -32,7 +32,7 @@ textarea[id^="id_form-"][id$="-announcement_text"] {
|
|||
{% endfor %}
|
||||
<tr>
|
||||
<td class="actions">
|
||||
<a href="{% url doc_view name=doc.name %}">Back</a>
|
||||
<a href="{% url "doc_view" name=doc.name %}">Back</a>
|
||||
<input type="submit" value="Send out the announcement and close the ballot"/>
|
||||
</td>
|
||||
</tr>
|
||||
|
|
|
@ -35,7 +35,7 @@ form #id_last_call_text {
|
|||
{% load ietf_filters %}
|
||||
{% if user|has_role:"Secretariat" %}
|
||||
<p>
|
||||
<a href="{% url doc_make_last_call name=doc.name %}">Make Last Call</a>
|
||||
<a href="{% url "doc_make_last_call" name=doc.name %}">Make Last Call</a>
|
||||
</p>
|
||||
{% endif %}
|
||||
|
||||
|
|
|
@ -20,6 +20,6 @@ The affected document{{ urls|pluralize }} can be obtained via
|
|||
{% for u in urls %}{{ settings.IDTRACKER_BASE_URL}}{{ u }}
|
||||
{% endfor %}
|
||||
IESG discussion of this request can be tracked via
|
||||
{{ settings.IDTRACKER_BASE_URL }}{% url doc_ballot name=doc %}
|
||||
{{ settings.IDTRACKER_BASE_URL }}{% url "doc_ballot" name=doc %}
|
||||
|
||||
{% endautoescape %}
|
||||
|
|
|
@ -28,7 +28,7 @@ form.start-rfc-status-change-review .actions {
|
|||
{% block content %}
|
||||
<h1>Begin RFC status change review</h1>
|
||||
|
||||
<p class="helptext">For help on the initial state choice, see the <a href="{% url state_help type="status-change" %}">state table</a>.</p>
|
||||
<p class="helptext">For help on the initial state choice, see the <a href="{% url "state_help" type="status-change" %}">state table</a>.</p>
|
||||
|
||||
<form class="start-rfc-status-change-review" action="" method="post">
|
||||
<table>
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
<h1>RFC Status Changes</h1>
|
||||
|
||||
{% if user|has_role:"Area Director,Secretariat" %}
|
||||
<p><a href="{% url start_rfc_status_change name='' %}">Start new RFC status change document</a></p>
|
||||
<p><a href="{% url "start_rfc_status_change" name='' %}">Start new RFC status change document</a></p>
|
||||
{% endif %}
|
||||
{% regroup docs by get_state as state_groups %}
|
||||
<table class="ietf-table ietf-doctable">
|
||||
|
|
|
@ -30,7 +30,7 @@ Edit status change text for {{doc.title}}
|
|||
<tr>
|
||||
<td></td>
|
||||
<td class="actions">
|
||||
<a href="{% url doc_view name=doc.canonical_name %}">Back</a>
|
||||
<a href="{% url "doc_view" name=doc.canonical_name %}">Back</a>
|
||||
<input type="submit" name="reset_text" value="Reset to Template Text"/>
|
||||
<input type="submit" name="submit_response" value="Submit"/>
|
||||
</td>
|
||||
|
|
|
@ -24,7 +24,7 @@ form.edit td { padding-bottom: .5em; }
|
|||
<p>Delegates can be assigned with permission to do the tasks of the
|
||||
chair{{ chairs|pluralize }}. Note that in order to actually do so, the delegates need a
|
||||
Datatracker account. New accounts can be
|
||||
<a href="{% url create_account %}">created here</a>.</p>
|
||||
<a href="{% url "create_account" %}">created here</a>.</p>
|
||||
|
||||
<form class="edit" action="" method="POST">
|
||||
<table>
|
||||
|
@ -40,7 +40,7 @@ Datatracker account. New accounts can be
|
|||
<tr>
|
||||
<td></td>
|
||||
<td class="actions">
|
||||
<a class="button" href="{% url ietf.group.views_stream.streams %}">Cancel</a>
|
||||
<a class="button" href="{% url "ietf.group.views_stream.streams" %}">Cancel</a>
|
||||
<input class="button" type="submit" value="Save"/>
|
||||
</td>
|
||||
</tr>
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
</div>
|
||||
|
||||
<div>
|
||||
<a href="{% url doc_view name=doc.name %}">{{doc.name}}-{{doc.rev}}</a>
|
||||
<a href="{% url "doc_view" name=doc.name %}">{{doc.name}}-{{doc.rev}}</a>
|
||||
<a href="http://www.ietf.org/id/{{doc.name}}-{{doc.rev}}.txt">[txt]</a>
|
||||
|
||||
<br/>{{ doc.title|escape }}
|
||||
|
@ -13,7 +13,7 @@
|
|||
{% with doc.conflictdoc as conflictdoc %}
|
||||
|
||||
<div style="padding-left:30px;">
|
||||
<a href="{% url doc_view name=conflictdoc.name %}">{{ conflictdoc.name }}-{{ conflictdoc.rev }}</a>
|
||||
<a href="{% url "doc_view" name=conflictdoc.name %}">{{ conflictdoc.name }}-{{ conflictdoc.rev }}</a>
|
||||
<a href="http://www.ietf.org/id/{{ conflictdoc.name }}-{{ conflictdoc.rev }}.txt">[txt]</a>
|
||||
<br/>{{ conflictdoc.title|escape }} ({{ conflictdoc.stream }}: {{ conflictdoc.intended_std_level }})
|
||||
{% if conflictdoc.note %}
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
</div>
|
||||
|
||||
<div>
|
||||
<a href="{% url doc_view name=doc.canonical_name %}">{{ doc.canonical_name }}</a>
|
||||
<a href="{% url "doc_view" name=doc.canonical_name %}">{{ doc.canonical_name }}</a>
|
||||
{% with doc.rfc_number as rfc_number %}
|
||||
{% if rfc_number %}
|
||||
<a href="http://www.rfc-editor.org/rfc/rfc{{rfc_number}}/">[txt]</a>
|
||||
|
|
|
@ -15,7 +15,7 @@ div.milestones-for-group { margin: 0.5em 0; }
|
|||
|
||||
{% for g in ad.groups_needing_review %}
|
||||
|
||||
<div class="milestones-for-group">{{ g.name }} ({{ g.acronym }}) <a href="{% url wg_edit_milestones acronym=g.acronym %}">has new milestones</a>:</div>
|
||||
<div class="milestones-for-group">{{ g.name }} ({{ g.acronym }}) <a href="{% url "wg_edit_milestones" acronym=g.acronym %}">has new milestones</a>:</div>
|
||||
|
||||
{% with g.milestones_needing_review as milestones %}
|
||||
{% include "wginfo/milestones.html" %}
|
||||
|
|
|
@ -13,13 +13,13 @@ div.decisions div { padding-left: 1em; text-indent: -1em; }
|
|||
<p>Showing review decisions announced in {{ timeframe }}.</p>
|
||||
|
||||
<p>Announcements in:
|
||||
{% for y in years %}<a {% if y != year %}href="{% url ietf.iesg.views.review_decisions year=y %}"{% endif %}>{{ y }}</a>{% if not forloop.last %}, {% endif %}{% endfor %}
|
||||
{% for y in years %}<a {% if y != year %}href="{% url "ietf.iesg.views.review_decisions" year=y %}"{% endif %}>{{ y }}</a>{% if not forloop.last %}, {% endif %}{% endfor %}
|
||||
</p>
|
||||
|
||||
<div class="decisions">
|
||||
{% for e in events %}
|
||||
{% ifchanged %}<h3>{{ e.time|date:"F j, Y" }}</h3>{% endifchanged %}
|
||||
<div>{{ e.desc }}: <a href="{% url doc_view e.doc.name %}">{{ e.doc.name }}</a> {% if e.doc.intended_std_level %}({{ e.doc.intended_std_level }}){% endif %} - {{ e.doc.title }}</div>
|
||||
<div>{{ e.desc }}: <a href="{% url "doc_view" e.doc.name %}">{{ e.doc.name }}</a> {% if e.doc.intended_std_level %}({{ e.doc.intended_std_level }}){% endif %} - {{ e.doc.title }}</div>
|
||||
{% endfor %}
|
||||
</div>
|
||||
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
<li>
|
||||
{{ doc.title }}
|
||||
|
||||
<br><a href="{% url doc_view name=doc.canonical_name %}">{{doc.canonical_name}}</a>
|
||||
<br><a href="{% url "doc_view" name=doc.canonical_name %}">{{doc.canonical_name}}</a>
|
||||
<a href="http://www.ietf.org/id/{{doc.canonical_name}}-{{doc.rev}}.txt">[txt]</a>
|
||||
|
||||
<div style="padding-left:20px">
|
||||
{{ doc.conflictdoc.title }} ({{ doc.conflictdoc.stream }}: {{ doc.conflictdoc.intended_std_level }})
|
||||
<br><a href="{% url doc_view name=doc.conflictdoc.canonical_name %}">{{ doc.conflictdoc.canonical_name }}</a>
|
||||
<br><a href="{% url "doc_view" name=doc.conflictdoc.canonical_name %}">{{ doc.conflictdoc.canonical_name }}</a>
|
||||
<a href="http://www.ietf.org/id/{{ doc.conflictdoc.canonical_name }}-{{ doc.conflictdoc.rev }}.txt">[txt]</a>
|
||||
{% if doc.conflictdoc.note %}
|
||||
<br>Note: {{ doc.conflictdoc.note|linebreaksbr }}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<li>
|
||||
{{ doc.title }} ({{ doc.intended_std_level }})
|
||||
<br><a href="{% url doc_view name=doc.canonical_name %}">{{ doc.canonical_name }}</a>
|
||||
<br><a href="{% url "doc_view" name=doc.canonical_name %}">{{ doc.canonical_name }}</a>
|
||||
{% with doc.rfc_number as rfc_number %}
|
||||
{% if rfc_number %}
|
||||
<a href="http://www.rfc-editor.org/rfc/rfc{{ rfc_number }}/">[txt]</a>
|
||||
|
|
|
@ -62,10 +62,10 @@ Template for {{ section_list.disclosure_type }}" where the submitter provided
|
|||
{% for item in ipr.updates.all %}
|
||||
<p>This IPR disclosure updates IPR disclosure ID #{{ item.updated.ipr_id }},
|
||||
{% if item.updated.status == 0 %}
|
||||
"<a href="{% url ietf.ipr.views.show item.updated.ipr_id %}">{{ item.updated.title }}</a>".
|
||||
"<a href="{% url "ietf.ipr.views.show" item.updated.ipr_id %}">{{ item.updated.title }}</a>".
|
||||
{% else %}
|
||||
{% if item.updated.status == 1 %}
|
||||
"<a href="{% url ietf.ipr.views.show item.updated.ipr_id %}">{{ item.updated.title }}</a>".
|
||||
"<a href="{% url "ietf.ipr.views.show" item.updated.ipr_id %}">{{ item.updated.title }}</a>".
|
||||
{% else %}
|
||||
"{{ item.updated.title }}", which was removed at the request of the submitter.
|
||||
{% endif %}
|
||||
|
@ -78,7 +78,7 @@ Template for {{ section_list.disclosure_type }}" where the submitter provided
|
|||
<p>
|
||||
This IPR disclosure has been updated by IPR disclosure ID #{{ item.ipr.ipr_id }},
|
||||
{% if item.status_to_be == 1 %}
|
||||
"<a href="{% url ietf.ipr.views.show item.ipr.ipr_id %}">{{ item.ipr.title }}</a>".
|
||||
"<a href="{% url "ietf.ipr.views.show" item.ipr.ipr_id %}">{{ item.ipr.title }}</a>".
|
||||
{% else %}
|
||||
"{{ item.ipr.title }}", which was removed at the request of the submitter.
|
||||
{% endif %}
|
||||
|
@ -86,7 +86,7 @@ Template for {{ section_list.disclosure_type }}" where the submitter provided
|
|||
{% endif %}
|
||||
{% endfor %}
|
||||
|
||||
<p><a href="{% url ietf.ipr.new.update ipr.ipr_id %}" rel="nofollow">Update this IPR disclosure</a>. Note: Updates to IPR disclosures must only be made by authorized
|
||||
<p><a href="{% url "ietf.ipr.new.update" ipr.ipr_id %}" rel="nofollow">Update this IPR disclosure</a>. Note: Updates to IPR disclosures must only be made by authorized
|
||||
representatives of the original submitters. Updates will automatically
|
||||
be forwarded to the current Patent Holder's Contact and to the Submitter
|
||||
of the original IPR disclosure.</p>
|
||||
|
|
|
@ -20,12 +20,12 @@
|
|||
|
||||
<hr />
|
||||
<ul>
|
||||
<li><a href="{% url ietf.ipr.new.new "specific" %}">File a disclosure about your IPR related to a specific IETF contribution</a></li>
|
||||
<li><a href="{% url ietf.ipr.new.new "generic" %}">File an IPR disclosure that is not related to a specific IETF contribution</a></li>
|
||||
<li><a href="{% url ietf.ipr.new.new "third-party" %}">Notify the IETF of IPR other than your own</a></li>
|
||||
<li><a href="{% url "ietf.ipr.new.new" "specific" %}">File a disclosure about your IPR related to a specific IETF contribution</a></li>
|
||||
<li><a href="{% url "ietf.ipr.new.new" "generic" %}">File an IPR disclosure that is not related to a specific IETF contribution</a></li>
|
||||
<li><a href="{% url "ietf.ipr.new.new" "third-party" %}">Notify the IETF of IPR other than your own</a></li>
|
||||
<li>To update an existing IPR disclosure, find the original disclosure and select "update this IPR disclosure".</li>
|
||||
<li><a href="{% url ietf.ipr.search.search %}">Search the IPR disclosures</a></li>
|
||||
<li><a href="{% url ietf.ipr.views.showlist %}">List of IPR disclosures</a></li>
|
||||
<li><a href="{% url "ietf.ipr.search.search" %}">Search the IPR disclosures</a></li>
|
||||
<li><a href="{% url "ietf.ipr.views.showlist" %}">List of IPR disclosures</a></li>
|
||||
</ul>
|
||||
|
||||
<p>To remove an IPR disclosure from the list, please contact the IETF Secretariat at <a href="mailto:ietf-ipr@ietf.org">ietf-ipr@ietf.org</a>.</p>
|
||||
|
|
|
@ -12,9 +12,9 @@ The IETF takes no position regarding the validity or scope of any
|
|||
intellectual property rights or other rights that might be claimed to
|
||||
pertain to the implementation or use of the technology described in any IETF documents or the extent to
|
||||
which any license under such rights might or might not be available; nor does it represent that it has made any independent effort to identify any such rights.</p>
|
||||
<p><a href="{% url ietf.ipr.views.about %}">Click here to submit an IPR disclosure</a></p>
|
||||
<p><a href="{% url "ietf.ipr.views.about" %}">Click here to submit an IPR disclosure</a></p>
|
||||
|
||||
<a href="{% url ietf.ipr.search.search %}">Search the IPR Disclosures</a>
|
||||
<a href="{% url "ietf.ipr.search.search" %}">Search the IPR Disclosures</a>
|
||||
|
||||
<a name="generic"></a>
|
||||
<h2>Generic IPR Disclosures</h2>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<td>{{ ipr.ipr_id }}</td>
|
||||
<td>
|
||||
{% if ipr.status == 1 %}
|
||||
<a href="{% url ietf.ipr.views.show ipr.ipr_id %}">{{ ipr.title|escape }}</a>
|
||||
<a href="{% url "ietf.ipr.views.show" ipr.ipr_id %}">{{ ipr.title|escape }}</a>
|
||||
{% else %}
|
||||
{{ ipr.title|escape }}
|
||||
<br/>This IPR disclosure was removed at the request of the submitter.
|
||||
|
@ -12,12 +12,12 @@
|
|||
<br />
|
||||
{% for item in ipr.updates.all %}
|
||||
{% if item.updated.status == 1 %}
|
||||
Updates ID <a href="{% url ietf.ipr.views.show item.updated.ipr_id %}">#{{ item.updated.ipr_id }}</a>.<br/>
|
||||
Updates ID <a href="{% url "ietf.ipr.views.show" item.updated.ipr_id %}">#{{ item.updated.ipr_id }}</a>.<br/>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
{% for item in ipr.updated_by.all %}
|
||||
{% if item.processed == 1 and item.ipr.status != 2 %}
|
||||
Updated by ID <a href="{% url ietf.ipr.views.show item.ipr.ipr_id %}">#{{ item.ipr.ipr_id }}</a>.<br/>
|
||||
Updated by ID <a href="{% url "ietf.ipr.views.show" item.ipr.ipr_id %}">#{{ item.ipr.ipr_id }}</a>.<br/>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</td>
|
||||
|
|
|
@ -99,5 +99,5 @@ label { float:left; width: 200px; }
|
|||
</form>
|
||||
</div>
|
||||
|
||||
<p><a href="{% url ietf.ipr.views.showlist %}">Back to IPR Disclosure Page</a></p>
|
||||
<p><a href="{% url "ietf.ipr.views.showlist" %}">Back to IPR Disclosure Page</a></p>
|
||||
{% endblock %}
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
<tr valign="top" bgcolor="#dadada">
|
||||
<td width="100">{{ ipr.submitted_date }}</td>
|
||||
<td width="90"><li>ID # {{ ipr.ipr_id }}</li></td>
|
||||
<td><a href="{% url ietf.ipr.views.show ipr_id=ipr.ipr_id %}">"{{ ipr.title|escape }}"</a></td>
|
||||
<td><a href="{% url "ietf.ipr.views.show" ipr_id=ipr.ipr_id %}">"{{ ipr.title|escape }}"</a></td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
|
||||
|
@ -27,7 +27,7 @@
|
|||
<tr valign="top">
|
||||
<td width="100">{{ ipr.submitted_date }}</td>
|
||||
<td width="90"><li>ID # {{ ipr.ipr_id }}</li></td>
|
||||
<td><a href="{% url ietf.ipr.views.show ipr_id=ipr.ipr_id %}">"{{ ipr.title|escape }}"</a></td>
|
||||
<td><a href="{% url "ietf.ipr.views.show" ipr_id=ipr.ipr_id %}">"{{ ipr.title|escape }}"</a></td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
{% else %}
|
||||
|
|
|
@ -31,10 +31,10 @@
|
|||
<td>
|
||||
{% for item in ipr.updated_by.all %}
|
||||
{% if item.processed == 1 and item.ipr.status != 2 %}
|
||||
IPR disclosure ID# {{ item.ipr.ipr_id }} "<a href="{% url ietf.ipr.views.show item.ipr.ipr_id %}">{{ item.ipr.title }}</a>" Updates
|
||||
IPR disclosure ID# {{ item.ipr.ipr_id }} "<a href="{% url "ietf.ipr.views.show" item.ipr.ipr_id %}">{{ item.ipr.title }}</a>" Updates
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
<a href="{% url ietf.ipr.views.show ipr.ipr_id %}">"{{ ipr.title }}"</a>
|
||||
<a href="{% url "ietf.ipr.views.show" ipr.ipr_id %}">"{{ ipr.title }}"</a>
|
||||
</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
|
|
|
@ -43,7 +43,7 @@
|
|||
<tr valign="top">
|
||||
<td width="100">{{ ipr.submitted_date }}</td>
|
||||
<td width="90"><li>ID # {{ ipr.ipr_id }}</li></td>
|
||||
<td><a href="{% url ietf.ipr.views.show ipr_id=ipr.ipr_id %}">"{{ ipr.title }}"</a></td>
|
||||
<td><a href="{% url "ietf.ipr.views.show" ipr_id=ipr.ipr_id %}">"{{ ipr.title }}"</a></td>
|
||||
</tr>
|
||||
{% for item in ipr.updates.all %}
|
||||
{% if item != ipr %}
|
||||
|
@ -51,8 +51,8 @@
|
|||
<td width="100">{{ item.updated.submitted_date }}</td>
|
||||
<td width="90"><li>ID # {{ item.updated.ipr_id }}</li></td>
|
||||
<td>
|
||||
IPR disclosure ID# {{ ipr.ipr_id }} <a href="{% url ietf.ipr.views.show ipr_id=ipr.ipr_id %}">"{{ ipr.title }}"</a>
|
||||
Updates <a href="{% url ietf.ipr.views.show ipr_id=item.ipr_id %}">{{ item.updated.title }}</a>
|
||||
IPR disclosure ID# {{ ipr.ipr_id }} <a href="{% url "ietf.ipr.views.show" ipr_id=ipr.ipr_id %}">"{{ ipr.title }}"</a>
|
||||
Updates <a href="{% url "ietf.ipr.views.show" ipr_id=item.ipr_id %}">{{ item.updated.title }}</a>
|
||||
</td>
|
||||
</tr>
|
||||
{% endif %}
|
||||
|
@ -65,8 +65,8 @@
|
|||
{% endblock %}
|
||||
<hr><br>
|
||||
|
||||
<a href="{% url ietf.ipr.search.search %}">IPR Search Main Page</a><br>
|
||||
<a href="{% url ietf.ipr.views.showlist %}">IPR Disclosure Page</a>
|
||||
<a href="{% url "ietf.ipr.search.search" %}">IPR Search Main Page</a><br>
|
||||
<a href="{% url "ietf.ipr.views.showlist" %}">IPR Disclosure Page</a>
|
||||
<br>
|
||||
{% endblock %}
|
||||
|
||||
|
|
|
@ -32,10 +32,10 @@
|
|||
<td>
|
||||
{% for item in ipr.updates.all %}
|
||||
{% if item.updated.status == 1 %}
|
||||
IPR disclosure ID# {{ item.updated.ipr_id }}, "<a href="{% url ietf.ipr.views.show item.updated.ipr_id %}">{{ item.updated.title|escape }}</a>" Updated by
|
||||
IPR disclosure ID# {{ item.updated.ipr_id }}, "<a href="{% url "ietf.ipr.views.show" item.updated.ipr_id %}">{{ item.updated.title|escape }}</a>" Updated by
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
<a href="{% url ietf.ipr.views.show ipr.ipr_id %}">"{{ ipr.title|escape }}"</a>
|
||||
<a href="{% url "ietf.ipr.views.show" ipr.ipr_id %}">"{{ ipr.title|escape }}"</a>
|
||||
</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
|
|
|
@ -8,5 +8,5 @@
|
|||
<h3>Please note that it may take one business day for your IPR disclosure to be posted
|
||||
on the IETF Page of Intellectual Property Rights Notices.</h3>
|
||||
|
||||
<p><a href="{% url ietf.ipr.views.showlist %}">Back to IPR Disclosure Page</a></p>
|
||||
<p><a href="{% url "ietf.ipr.views.showlist" %}">Back to IPR Disclosure Page</a></p>
|
||||
{% endblock %}
|
||||
|
|
|
@ -8,6 +8,6 @@
|
|||
|
||||
{% block management-links %}
|
||||
<ul>
|
||||
<li><a href="{% url liaison_list %}">Return to liaison list</a></li>
|
||||
<li><a href="{% url "liaison_list" %}">Return to liaison list</a></li>
|
||||
</ul>
|
||||
{% endblock %}
|
||||
|
|
|
@ -79,7 +79,7 @@
|
|||
<td>Liaisons referring to this one:</td>
|
||||
<td>
|
||||
{% for rel in relations %}
|
||||
<a href="{% url liaison_detail rel.pk %}">{% if rel.title %}{{ rel.title }}{% else %}Liaison #{{ rel.pk }}{% endif %}</a><br />
|
||||
<a href="{% url "liaison_detail" rel.pk %}">{% if rel.title %}{{ rel.title }}{% else %}Liaison #{{ rel.pk }}{% endif %}</a><br />
|
||||
{% endfor %}
|
||||
</td>
|
||||
</tr>
|
||||
|
@ -90,7 +90,7 @@
|
|||
<tr>
|
||||
<td>Referenced liaison:</td>
|
||||
<td>
|
||||
<a href="{% url liaison_detail liaison.related_to.pk %}">{% if liaison.related_to.title %}{{ liaison.related_to.title }}{% else %}Liaison #{{ liaison.related_to.pk }}{% endif %}</a>
|
||||
<a href="{% url "liaison_detail" liaison.related_to.pk %}">{% if liaison.related_to.title %}{{ liaison.related_to.title }}{% else %}Liaison #{{ liaison.related_to.pk }}{% endif %}</a>
|
||||
</td>
|
||||
</tr>
|
||||
{% endif %}
|
||||
|
@ -116,7 +116,7 @@
|
|||
</table>
|
||||
|
||||
{% if can_edit %}
|
||||
<p><a href="{% url liaison_edit object_id=liaison.pk %}">Edit Liaison</a></p>
|
||||
<p><a href="{% url "liaison_edit" object_id=liaison.pk %}">Edit Liaison</a></p>
|
||||
{% endif %}
|
||||
|
||||
{% endblock %}
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
<a href="https://datatracker.ietf.org/documents/LIAISON/{{ doc.external_url }}">{{ doc.title }}</a><br/>
|
||||
{% endfor %}
|
||||
{% else %}
|
||||
<a href="{% if liaison.approved %}{% url liaison_detail object_id=liaison.pk %}{% else %}{% url liaison_approval_detail object_id=liaison.pk %}{% endif %}">{{ liaison.title }}</a>
|
||||
<a href="{% if liaison.approved %}{% url "liaison_detail" object_id=liaison.pk %}{% else %}{% url "liaison_approval_detail" object_id=liaison.pk %}{% endif %}">{{ liaison.title }}</a>
|
||||
{% endif %}
|
||||
<span style="display: none" class="liaisonPK">{{ liaison.pk }}</span>
|
||||
</td>
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
<div class="formconfig" style="display: none;">
|
||||
{% block formconfig %}
|
||||
<span class="info_update_url">{% url get_info %}</span>
|
||||
<span class="info_update_url">{% url "ietf.liaisons.views.get_info" %}</span>
|
||||
{% endblock %}
|
||||
</div>
|
||||
|
||||
|
|
|
@ -16,9 +16,9 @@
|
|||
{% block management-links %}
|
||||
{% if can_manage %}
|
||||
<ul>
|
||||
{% if can_send_incoming %}<li><a href="{% url add_liaison %}?incoming">Add new incoming liaison</a></li>{% endif %}
|
||||
{% if can_send_outgoing %}<li><a href="{% url add_liaison %}">Add new outgoing liaison</a></li>{% endif %}
|
||||
{% if approvable %}<li><a href="{% url liaison_approval_list %}">You have {{ approvable }} pending liaison statement{{ approvable|pluralize }} that need{{ approvable|pluralize:"s," }} your approval</a></li>{% endif %}
|
||||
{% if can_send_incoming %}<li><a href="{% url "add_liaison" %}?incoming">Add new incoming liaison</a></li>{% endif %}
|
||||
{% if can_send_outgoing %}<li><a href="{% url "add_liaison" %}">Add new outgoing liaison</a></li>{% endif %}
|
||||
{% if approvable %}<li><a href="{% url "liaison_approval_list" %}">You have {{ approvable }} pending liaison statement{{ approvable|pluralize }} that need{{ approvable|pluralize:"s," }} your approval</a></li>{% endif %}
|
||||
</ul>
|
||||
{% endif %}
|
||||
{% endblock %}
|
||||
|
|
|
@ -137,16 +137,16 @@ You can customize the agenda below to show only selected working group sessions.
|
|||
<br/><i>Groups displayed in italics are BOFs</i></td></tr>
|
||||
</table>
|
||||
|
||||
<div id="ical-link" class="hidden"><span style="font-size:150%">Week View</span><br/><a id="ical-href" href="{% url ietf.meeting.views.ical_agenda num=schedule.meeting.number %}"><em>Download as an .ics file</em></a></div>
|
||||
<div id="ical-link" class="hidden"><span style="font-size:150%">Week View</span><br/><a id="ical-href" href="{% url "ietf.meeting.views.ical_agenda" num=schedule.meeting.number %}"><em>Download as an .ics file</em></a></div>
|
||||
|
||||
<iframe id="weekview" class="hidden" width="100%" height="600px" src="about:blank" scrolling="no"></iframe>
|
||||
|
||||
<table width="100%" id="ics-preconfig"><tr><td align="center">
|
||||
Preconfigured .ics links:
|
||||
{% for area in schedule.area_list %}
|
||||
<a href="{% url ietf.meeting.views.ical_agenda num=schedule.meeting.number %}?{{area|upper}},-~Other,-~Plenary">{{area|upper}}</a> •
|
||||
<a href="{% url "ietf.meeting.views.ical_agenda" num=schedule.meeting.number %}?{{area|upper}},-~Other,-~Plenary">{{area|upper}}</a> •
|
||||
{% endfor %}
|
||||
<a href="{% url ietf.meeting.views.ical_agenda num=schedule.meeting.number %}">Non-Area Events</a>
|
||||
<a href="{% url "ietf.meeting.views.ical_agenda" num=schedule.meeting.number %}">Non-Area Events</a>
|
||||
</td></tr></table>
|
||||
|
||||
{% if schedule.meeting.agenda_note %}<h2 class="ietf-divider" style="background-color: #C00; margin-top: 2em; margin-bottom: 0;">{{ schedule.meeting.agenda_note|safe }}</h2>{% endif %}
|
||||
|
|
|
@ -127,16 +127,16 @@ You can customize the agenda below to show only selected working group sessions.
|
|||
<br/><i>Groups displayed in italics are BOFs</i></td></tr>
|
||||
</table>
|
||||
|
||||
<div id="ical-link" class="hidden"><span style="font-size:150%">Week View</span><br/><a id="ical-href" href="{% url ietf.meeting.views.ical_agenda num=schedule.meeting.number %}"><em>Download as an .ics file</em></a></div>
|
||||
<div id="ical-link" class="hidden"><span style="font-size:150%">Week View</span><br/><a id="ical-href" href="{% url "ietf.meeting.views.ical_agenda" num=schedule.meeting.number %}"><em>Download as an .ics file</em></a></div>
|
||||
|
||||
<iframe id="weekview" class="hidden" width="100%" height="600px" src="about:blank" scrolling="no"></iframe>
|
||||
|
||||
<table width="100%" id="ics-preconfig"><tr><td align="center">
|
||||
Preconfigured .ics links:
|
||||
{% for area in schedule.area_list %}
|
||||
<a href="{% url ietf.meeting.views.ical_agenda num=schedule.meeting.number %}?{{area|upper}},-~Other,-~Plenary">{{area|upper}}</a> •
|
||||
<a href="{% url "ietf.meeting.views.ical_agenda" num=schedule.meeting.number %}?{{area|upper}},-~Other,-~Plenary">{{area|upper}}</a> •
|
||||
{% endfor %}
|
||||
<a href="{% url ietf.meeting.views.ical_agenda num=schedule.meeting.number %}">Non-Area Events</a>
|
||||
<a href="{% url "ietf.meeting.views.ical_agenda" num=schedule.meeting.number %}">Non-Area Events</a>
|
||||
</td></tr></table>
|
||||
|
||||
{% if schedule.meeting.agenda_note %}<h2 class="ietf-divider" style="background-color: #C00; margin-top: 2em; margin-bottom: 0;">{{ schedule.meeting.agenda_note|safe }}</h2>{% endif %}
|
||||
|
|
|
@ -44,7 +44,7 @@
|
|||
</div>
|
||||
|
||||
<div class="agenda_list_edit">
|
||||
<p><a href="{% url ietf.meeting.views.edit_timeslots meeting.number %}">Edit Timeslots</a></p>
|
||||
<p><a href="{% url "ietf.meeting.views.edit_timeslots" meeting.number %}">Edit Timeslots</a></p>
|
||||
</div>
|
||||
|
||||
<div id="class_list" class="agenda_list">
|
||||
|
@ -61,11 +61,11 @@
|
|||
<td class="agenda_mark agenda_data"> <span class="styled_button agenda_official_mark {{agenda.official_class}}">{{ agenda.official_token }}</span></td>
|
||||
<td class="agenda_data"> <span class="agenda_owner">{{ agenda.owner }}</span> </td>
|
||||
<td class="agenda_data">
|
||||
<a href="{% url ietf.meeting.views.edit_agenda agenda.meeting.number agenda.name %}"><span class="agenda_name">{{ agenda.name }}</span></a>
|
||||
<a href="{% url "ietf.meeting.views.edit_agenda" agenda.meeting.number agenda.name %}"><span class="agenda_name">{{ agenda.name }}</span></a>
|
||||
</td>
|
||||
<td class="agenda_data"> <span class="agenda_visible {{agenda.visible_class}}">{{ agenda.visible_token }}</span></a></td>
|
||||
<td class="agenda_data"> <span class="agenda_public {{agenda.public_class}}">{{ agenda.public_token }}</span></td>
|
||||
<td class="agenda_mark agenda_data"> <a href="{% url ietf.meeting.views.edit_agenda_properties agenda.meeting.number agenda.name %}"><span class="styled_button agenda_edit">EDIT</span></a> </td>
|
||||
<td class="agenda_mark agenda_data"> <a href="{% url "ietf.meeting.views.edit_agenda_properties" agenda.meeting.number agenda.name %}"><span class="styled_button agenda_edit">EDIT</span></a> </td>
|
||||
<td class="agenda_mark agenda_data"> <span class="styled_button agenda_delete">DEL</span> </td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
|
|
|
@ -129,7 +129,7 @@ area_directors["{{ad.group.acronym}}"].push(find_person_by_href("{{ad.person.def
|
|||
|
||||
<div id="unassigned-items">
|
||||
<div id="all_agendas" class="events_bar_buttons">
|
||||
<a href="{% url ietf.meeting.views.edit_agendas meeting.number %}">
|
||||
<a href="{% url "ietf.meeting.views.edit_agendas" meeting.number %}">
|
||||
<button class="styled_button">all agendas</button>
|
||||
</a>
|
||||
</div>
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
You can not have access this agenda. It belongs to {{ schedule.owner }}.
|
||||
</p>
|
||||
<p>
|
||||
<a href="{% url ietf.meeting.views.edit_agendas meeting.number %}">List your meetings</a>.
|
||||
<a href="{% url "ietf.meeting.views.edit_agendas" meeting.number %}">List your meetings</a>.
|
||||
</p>
|
||||
<div class="wrapper custom_text_stuff">
|
||||
</div>
|
||||
|
|
|
@ -60,7 +60,7 @@
|
|||
<tr>
|
||||
<td></td>
|
||||
<td colspan=2><input type="button" name="save" value="save" onClick="save_agenda(this.form)" class="styled_button">
|
||||
<a id="agenda_cancel_url" href="{% url ietf.meeting.views.edit_agendas meeting.number %}"><span class="styled_button agenda_cancel">Cancel</span></a></td>
|
||||
<a id="agenda_cancel_url" href="{% url "ietf.meeting.views.edit_agendas" meeting.number %}"><span class="styled_button agenda_cancel">Cancel</span></a></td>
|
||||
<td><span class="styled_button agenda_delete">DEL</span></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
{% for m in regime.announcements %}
|
||||
<tr>
|
||||
<td>{{ m.time|date:"Y-M-d" }}</td>
|
||||
<td style="max-width:50%"><a href="{% url nomcom_announcement message_id=m.id %}">{{ m.subject|escape }}</a></td>
|
||||
<td style="max-width:50%"><a href="{% url "nomcom_announcement" message_id=m.id %}">{{ m.subject|escape }}</a></td>
|
||||
<td>{{ m.to_name }}</td>
|
||||
<tr>
|
||||
{% endfor %}
|
||||
|
|
|
@ -56,6 +56,6 @@
|
|||
|
||||
<h2>Delete Nomcom</h2>
|
||||
|
||||
<p>To delete all data about {{ nomcom.group.name }}, <a href="{% url nomcom_delete_nomcom year %}" class="deletelink">click here</a></p>
|
||||
<p>To delete all data about {{ nomcom.group.name }}, <a href="{% url "nomcom_delete_nomcom" year %}" class="deletelink">click here</a></p>
|
||||
|
||||
{% endblock %}
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
|
||||
{% block nomcom_content %}
|
||||
|
||||
<p>Back to list of <a href="{% url nomcom_private_index year %}">nominees</a></p>
|
||||
<p>Back to list of <a href="{% url "nomcom_private_index" year %}">nominees</a></p>
|
||||
|
||||
<h2>Edit email of {{ nominee }} </h2>
|
||||
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
{% block nomcom_content %}
|
||||
|
||||
<h2>Positions in {{ nomcom.group }}</h2>
|
||||
<a href="{% url nomcom_add_position year %}">Add a new position</a>
|
||||
<a href="{% url "nomcom_add_position" year %}">Add a new position</a>
|
||||
{% if positions %}
|
||||
{% for position in positions %}
|
||||
<h3>{{ position.name }} <a href="{% url nomcom_edit_position year position.id %}">[Edit]</a> <a href="{% url nomcom_remove_position year position.id %}">[Remove]</a></h3>
|
||||
<h3>{{ position.name }} <a href="{% url "nomcom_edit_position" year position.id %}">[Edit]</a> <a href="{% url "nomcom_remove_position" year position.id %}">[Remove]</a></h3>
|
||||
<dl>
|
||||
<dt>Description:</dt>
|
||||
<dd>{{ position.description }}</dd>
|
||||
|
@ -18,7 +18,7 @@
|
|||
<dd>
|
||||
<ul>
|
||||
{% for template in position.get_templates %}
|
||||
<li><a href="{% url nomcom_edit_template year template.id %}">{{ template }}</a></li>
|
||||
<li><a href="{% url "nomcom_edit_template" year template.id %}">{{ template }}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</dd>
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
{% if template_list %}
|
||||
<ul>
|
||||
{% for template in template_list %}
|
||||
<li><a href="{% url nomcom_edit_template year template.id %}">{{ template }}</a></li>
|
||||
<li><a href="{% url "nomcom_edit_template" year template.id %}">{{ template }}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% else %}
|
||||
|
@ -19,7 +19,7 @@
|
|||
<h3>{{ position.name }}</h3>
|
||||
<ul>
|
||||
{% for template in position.get_templates %}
|
||||
<li><a href="{% url nomcom_edit_template year template.id %}">{{ template }}</a></li>
|
||||
<li><a href="{% url "nomcom_edit_template" year template.id %}">{{ template }}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% endfor %}
|
||||
|
|
|
@ -8,28 +8,28 @@
|
|||
|
||||
<div class="ietf-navset nomcom-menu" >
|
||||
<div>
|
||||
{% if selected == "index" %}<span class="selected">Nominees</span>{% else %}<a href="{% url nomcom_private_index year %}">Nominees</a>{% endif %} |
|
||||
{% if selected == "index" %}<span class="selected">Nominees</span>{% else %}<a href="{% url "nomcom_private_index" year %}">Nominees</a>{% endif %} |
|
||||
{% if nomcom|has_publickey %}
|
||||
{% if selected == "nominate" %}<span class="selected">Nominate</span>{% else %}<a href="{% url nomcom_private_nominate year %}">Nominate</a>{% endif %} |
|
||||
{% if selected == "feedback" %}<span class="selected">Enter Comments</span>{% else %}<a href="{% url nomcom_private_feedback year %}">Enter Comments</a>{% endif %} |
|
||||
{% if selected == "questionnaire" %}<span class="selected">Questionnaire response</span>{% else %}<a href="{% url nomcom_private_questionnaire year %}">Questionnaire response</a>{% endif %} |
|
||||
{% if selected == "nominate" %}<span class="selected">Nominate</span>{% else %}<a href="{% url "nomcom_private_nominate" year %}">Nominate</a>{% endif %} |
|
||||
{% if selected == "feedback" %}<span class="selected">Enter Comments</span>{% else %}<a href="{% url "nomcom_private_feedback" year %}">Enter Comments</a>{% endif %} |
|
||||
{% if selected == "questionnaire" %}<span class="selected">Questionnaire response</span>{% else %}<a href="{% url "nomcom_private_questionnaire" year %}">Questionnaire response</a>{% endif %} |
|
||||
{% endif %}
|
||||
{% if selected == "view_feedback" %}<span class="selected">View Comments</span>{% else %}<a href="{% url nomcom_view_feedback year %}">View Comments</a>{% endif %} |
|
||||
{% if selected == "private_key" %}<span class="selected">Private Key</span>{% else %}<a href="{% url nomcom_private_key year %}">Private Key</a>{% endif %}
|
||||
{% if selected == "view_feedback" %}<span class="selected">View Comments</span>{% else %}<a href="{% url "nomcom_view_feedback" year %}">View Comments</a>{% endif %} |
|
||||
{% if selected == "private_key" %}<span class="selected">Private Key</span>{% else %}<a href="{% url "nomcom_private_key" year %}">Private Key</a>{% endif %}
|
||||
{% if user|is_chair:year %} |
|
||||
{% if selected == "feedback_pending" %}<span class="selected">Pending Feedback</span>{% else %}<a href="{% url nomcom_view_feedback_pending year %}">Pending Feedback</a>{% endif %} |
|
||||
{% if selected == "feedback_email" %}<span class="selected">Enter Email Feedback</span>{% else %}<a href="{% url nomcom_private_feedback_email year %}">Enter Email Feedback</a>{% endif %} |
|
||||
{% if selected == "send_accept_reminder" %}<span class="selected">Send Accept Reminder</span>{% else %}<a href="{% url nomcom_send_reminder_mail year "accept" %}">Send Accept Reminder</a>{% endif %} |
|
||||
{% if selected == "send_questionnaire_reminder" %}<span class="selected">Send Questionnaire Reminder</span>{% else %}<a href="{% url nomcom_send_reminder_mail year "questionnaire" %}">Send Questionnaire Reminder</a>{% endif %}
|
||||
{% if selected == "feedback_pending" %}<span class="selected">Pending Feedback</span>{% else %}<a href="{% url "nomcom_view_feedback_pending" year %}">Pending Feedback</a>{% endif %} |
|
||||
{% if selected == "feedback_email" %}<span class="selected">Enter Email Feedback</span>{% else %}<a href="{% url "nomcom_private_feedback_email" year %}">Enter Email Feedback</a>{% endif %} |
|
||||
{% if selected == "send_accept_reminder" %}<span class="selected">Send Accept Reminder</span>{% else %}<a href="{% url "nomcom_send_reminder_mail" year "accept" %}">Send Accept Reminder</a>{% endif %} |
|
||||
{% if selected == "send_questionnaire_reminder" %}<span class="selected">Send Questionnaire Reminder</span>{% else %}<a href="{% url "nomcom_send_reminder_mail" year "questionnaire" %}">Send Questionnaire Reminder</a>{% endif %}
|
||||
{% endif %}
|
||||
</div>
|
||||
{% if user|is_chair:year %}
|
||||
<div class="nomcom-edit">
|
||||
{% if selected == "edit_nomcom" %}<span class="selected">Edit Settings</span>{% else %}<a href="{% url nomcom_edit_nomcom year %}">Edit Settings</a>{% endif %} |
|
||||
{% if selected == "edit_templates" %}<span class="selected">Edit Pages</span>{% else %}<a href="{% url nomcom_list_templates year %}">Edit Pages</a>{% endif %} |
|
||||
{% if selected == "edit_positions" %}<span class="selected">Edit Positions</span>{% else %}<a href="{% url nomcom_list_positions year %}">Edit Positions</a>{% endif %} |
|
||||
{% if selected == "merge" %}<span class="selected">Merge Email Addresses</span>{% else %}<a href="{% url nomcom_private_merge year %}">Merge Email Addresses</a>{% endif %} |
|
||||
{% if selected == "edit_members" %}<span class="selected">Edit Nomcom Members</span>{% else %}<a href="{% url nomcom_edit_members year %}">Edit Nomcom Members</a>{% endif %}
|
||||
{% if selected == "edit_nomcom" %}<span class="selected">Edit Settings</span>{% else %}<a href="{% url "nomcom_edit_nomcom" year %}">Edit Settings</a>{% endif %} |
|
||||
{% if selected == "edit_templates" %}<span class="selected">Edit Pages</span>{% else %}<a href="{% url "nomcom_list_templates" year %}">Edit Pages</a>{% endif %} |
|
||||
{% if selected == "edit_positions" %}<span class="selected">Edit Positions</span>{% else %}<a href="{% url "nomcom_list_positions" year %}">Edit Positions</a>{% endif %} |
|
||||
{% if selected == "merge" %}<span class="selected">Merge Email Addresses</span>{% else %}<a href="{% url "nomcom_private_merge" year %}">Merge Email Addresses</a>{% endif %} |
|
||||
{% if selected == "edit_members" %}<span class="selected">Edit Nomcom Members</span>{% else %}<a href="{% url "nomcom_edit_members" year %}">Edit Nomcom Members</a>{% endif %}
|
||||
</div>
|
||||
{% endif %}
|
||||
</div>
|
||||
|
|
|
@ -7,13 +7,13 @@
|
|||
<h1>Nomcom {{ year }} Pages</h1>
|
||||
|
||||
<div class="ietf-navset">
|
||||
{% if selected == "index" %}<span class="selected">Home</span>{% else %}<a href="{% url nomcom_year_index year %}">Home</a>{% endif %} |
|
||||
{% if selected == "index" %}<span class="selected">Home</span>{% else %}<a href="{% url "nomcom_year_index" year %}">Home</a>{% endif %} |
|
||||
{% if nomcom|has_publickey %}
|
||||
{% if selected == "nominate" %}<span class="selected">Nominate</span>{% else %}<a href="{% url nomcom_public_nominate year %}">Nominate</a>{% endif %} |
|
||||
{% if selected == "feedback" %}<span class="selected">Provide Comments</span>{% else %}<a href="{% url nomcom_public_feedback year %}">Provide Comments</a>{% endif %} |
|
||||
{% if selected == "nominate" %}<span class="selected">Nominate</span>{% else %}<a href="{% url "nomcom_public_nominate" year %}">Nominate</a>{% endif %} |
|
||||
{% if selected == "feedback" %}<span class="selected">Provide Comments</span>{% else %}<a href="{% url "nomcom_public_feedback" year %}">Provide Comments</a>{% endif %} |
|
||||
{% endif %}
|
||||
{% if selected == "requirements" %}<span class="selected">Desired Expertise</span>{% else %}<a href="{% url nomcom_requirements year %}">Desired Expertise</a>{% endif %} |
|
||||
{% if selected == "questionnaires" %}<span class="selected">Questionnaires</span>{% else %}<a href="{% url nomcom_questionnaires year %}">Questionnaires</a>{% endif %} |
|
||||
{% if selected == "requirements" %}<span class="selected">Desired Expertise</span>{% else %}<a href="{% url "nomcom_requirements" year %}">Desired Expertise</a>{% endif %} |
|
||||
{% if selected == "questionnaires" %}<span class="selected">Questionnaires</span>{% else %}<a href="{% url "nomcom_questionnaires" year %}">Questionnaires</a>{% endif %} |
|
||||
</div>
|
||||
|
||||
{% block nomcom_content %}
|
||||
|
|
|
@ -68,7 +68,7 @@ table.nominees tr td {
|
|||
<tr><th>{{ p.name }}:</th></tr>
|
||||
{% for np in p.nomineeposition_set.accepted.not_duplicated %}
|
||||
<tr>
|
||||
<td><a href="{% url nomcom_private_feedback year %}?nominee={{np.nominee.id}}&position={{ np.position.id}}">{{ np.nominee }}</td>
|
||||
<td><a href="{% url "nomcom_private_feedback" year %}?nominee={{np.nominee.id}}&position={{ np.position.id}}">{{ np.nominee }}</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
|
|
|
@ -106,7 +106,7 @@
|
|||
{% if is_chair %}
|
||||
<td><input class="batch-select" type="checkbox" value="{{ np.id }}" name="selected"/></td>
|
||||
{% endif %}
|
||||
<td><a href="{% url ietf.nomcom.views.view_feedback_nominee year=year nominee_id=np.nominee.id %}#comment">{{ np.nominee }}</a>{% if is_chair %} <a href="{% url nomcom_edit_nominee year np.nominee.id %}">(edit)</a>{% endif %}</td>
|
||||
<td><a href="{% url "ietf.nomcom.views.view_feedback_nominee" year=year nominee_id=np.nominee.id %}#comment">{{ np.nominee }}</a>{% if is_chair %} <a href="{% url "nomcom_edit_nominee" year np.nominee.id %}">(edit)</a>{% endif %}</td>
|
||||
<td>{{ np.position.name }}</td>
|
||||
<td>{{ np.state }}</td>
|
||||
<td>{{ np.questionnaires|yesno:"Yes,No,No" }}
|
||||
|
|
|
@ -70,7 +70,7 @@ table.nominees tr td {
|
|||
<th>{{ p.name }}:</th></tr>
|
||||
{% for np in p.nomineeposition_set.accepted.not_duplicated %}
|
||||
<tr>
|
||||
<td>{% add_num_nominations user np.position np.nominee %}<a href="{% url nomcom_public_feedback year %}?nominee={{np.nominee.id}}&position={{ np.position.id}}">{{ np.nominee }}</td>
|
||||
<td>{% add_num_nominations user np.position np.nominee %}<a href="{% url "nomcom_public_feedback" year %}?nominee={{np.nominee.id}}&position={{ np.position.id}}">{{ np.nominee }}</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
|
|
|
@ -41,7 +41,7 @@
|
|||
|
||||
</form>
|
||||
|
||||
<p>The message that will be sent is as follows: {% if mail_template %}<a href="{% url nomcom_edit_template year mail_template.id %}">(Edit the message)</a>{% endif %}</p>
|
||||
<p>The message that will be sent is as follows: {% if mail_template %}<a href="{% url "nomcom_edit_template" year mail_template.id %}">(Edit the message)</a>{% endif %}</p>
|
||||
|
||||
<pre>{{ mail_template.content|wrap_text:80|escape }}</pre>
|
||||
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
</tr>
|
||||
{% for nominee, feedback in nominees_feedback.items %}
|
||||
<tr class="{{ forloop.counter|divisibleby:2|yesno:"oddrow,evenrow" }}">
|
||||
<td><a href="{% url nomcom_view_feedback_nominee year nominee.id %}#comment">{{ nominee }}</td>
|
||||
<td><a href="{% url "nomcom_view_feedback_nominee" year nominee.id %}#comment">{{ nominee }}</td>
|
||||
{% for f in feedback %}
|
||||
<td>{{ f.1 }}</td>
|
||||
{% endfor %}
|
||||
|
@ -35,7 +35,7 @@
|
|||
{% endfor %}
|
||||
</tr>
|
||||
<tr class="evenrow">
|
||||
<td><a href="{% url nomcom_view_feedback_unrelated year %}">View feedback not related to nominees</td>
|
||||
<td><a href="{% url "nomcom_view_feedback_unrelated" year %}">View feedback not related to nominees</td>
|
||||
{% for count in independent_feedback %}
|
||||
<td>{{ count }}</td>
|
||||
{% endfor %}
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
|
||||
{% block nomcom_content %}
|
||||
|
||||
<p>Back to list of <a href="{% url nomcom_view_feedback year %}">nominees</a></p>
|
||||
<p>Back to list of <a href="{% url "nomcom_view_feedback" year %}">nominees</a></p>
|
||||
|
||||
<h2>Feedback of {{ nominee }} </h2>
|
||||
|
||||
|
|
|
@ -50,7 +50,7 @@
|
|||
<div class="sumit-row">
|
||||
{% if extra_step %}
|
||||
<input type="submit" value="Save feedback" name="end" />
|
||||
<a href="{% url nomcom_view_feedback_pending year %}">Cancel and leave the following feedback unclassified</a>
|
||||
<a href="{% url "nomcom_view_feedback_pending" year %}">Cancel and leave the following feedback unclassified</a>
|
||||
{% else %}
|
||||
<input type="submit" value="Classify" />
|
||||
{% if default_type %}<input type="submit" name="move_to_default" value="Move all unclassified feedback to {{ default_type }}" />{% endif %}
|
||||
|
@ -118,7 +118,7 @@
|
|||
<div class="sumit-row">
|
||||
{% if extra_step %}
|
||||
<input type="submit" value="Save feedback" name="end" />
|
||||
<a href="{% url nomcom_view_feedback_pending year %}">Cancel and leave the following feedback unclassified</a>
|
||||
<a href="{% url "nomcom_view_feedback_pending" year %}">Cancel and leave the following feedback unclassified</a>
|
||||
{% else %}
|
||||
<input type="submit" value="Classify" />
|
||||
{% if default_type %}<input type="submit" name="move_to_default" value="Move all unclassified feedback to {{ default_type }}" />{% endif %}
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
|
||||
{% block nomcom_content %}
|
||||
|
||||
<p>Back to list of <a href="{% url nomcom_view_feedback year %}">feedback</a></p>
|
||||
<p>Back to list of <a href="{% url "nomcom_view_feedback" year %}">feedback</a></p>
|
||||
|
||||
<h2>Feedback not related to nominees</h2>
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@ to the user account '{{ user }}' at '{{ domain }}'.
|
|||
If you requested this change, please confirm that this is your email
|
||||
address by clicking on following link:
|
||||
|
||||
http://{{ domain }}{% url confirm_new_email user today email auth %}
|
||||
http://{{ domain }}{% url "confirm_new_email" user today email auth %}
|
||||
|
||||
This link will expire in {{ expire }} days.
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<h1>Change password</h1>
|
||||
{% if success %}
|
||||
<p>Your password has been updated.</p>
|
||||
<p>Now you can <a href="{% url ietfauth.views.ietf_login %}">sign in</a></p>
|
||||
<p>Now you can <a href="{% url "ietfauth.views.ietf_login" %}">sign in</a></p>
|
||||
{% else %}
|
||||
<p>Hello, you can select a new password below for your user {{ username }}.</p>
|
||||
<form action="" method="POST">
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<h1>Confirm account creation</h1>
|
||||
{% if success %}
|
||||
<p>Your account with login name '{{ email }}' has been created, using the password you have selected.</p>
|
||||
<p>Now you can <a href="{% url ietfauth.views.ietf_login %}">sign in</a></p>
|
||||
<p>Now you can <a href="{% url "ietfauth.views.ietf_login" %}">sign in</a></p>
|
||||
{% else %}
|
||||
<p>In order to complete the setup of your account with login name '{{ email }}', please set a password:</p>
|
||||
<form action="" method="POST">
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<h1>Confirm new email address</h1>
|
||||
{% if success %}
|
||||
<p>Your account with login name '{{ username }}' has been updated to include the email address '{{ email }}'.</p>
|
||||
<p>You may now wish to <a href="{% url ietfauth.views.profile %}">edit your profile</a>.</p>
|
||||
<p>You may now wish to <a href="{% url "ietfauth.views.profile" %}">edit your profile</a>.</p>
|
||||
{% else %}
|
||||
<p>An error has occured when attempting to add the email address '{{ email }}' to your account '{{ username }}'.<p>
|
||||
<ul>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
{% for email in new_emails %}
|
||||
<p><b>A confirmation email has been sent to {{email}}. It will be added to your account after you click on the link it contains.</b></p>
|
||||
{% endfor %}
|
||||
<p>You may <a href="{% url ietfauth.views.profile %}">continue editing your profile</a>.</p>
|
||||
<p>You may <a href="{% url "ietfauth.views.profile" %}">continue editing your profile</a>.</p>
|
||||
{% else %}
|
||||
<p>An error has occured when attempting to update your account.<p>
|
||||
{% if error %}<p>{{ error }}</p>{% endif %}
|
||||
|
|
|
@ -51,13 +51,13 @@
|
|||
<form action="" method="POST">
|
||||
<p>
|
||||
If you already have an account, and want to use a new email address,<br/>
|
||||
please go to your <a href="{% url ietf.ietfauth.views.profile %}">account profile page</a> and
|
||||
please go to your <a href="{% url "ietf.ietfauth.views.profile" %}">account profile page</a> and
|
||||
add the new email<br/>
|
||||
address there.
|
||||
</p>
|
||||
|
||||
<p style="width: 35em">
|
||||
If you already have an account, but forgot your password,<br/> <a href="{% url password_reset %}">please use the password reset form.</a>
|
||||
If you already have an account, but forgot your password,<br/> <a href="{% url "password_reset" %}">please use the password reset form.</a>
|
||||
</p>
|
||||
|
||||
|
||||
|
@ -69,7 +69,7 @@
|
|||
{{ form }}
|
||||
</table>
|
||||
<div class="submit_row">
|
||||
<input type="hidden" id="check_user_name_url" value="{% url ajax_check_username %}" />
|
||||
<input type="hidden" id="check_user_name_url" value="{% url "ajax_check_username" %}" />
|
||||
<input type="submit" value="Submit" />
|
||||
</div>
|
||||
</form>
|
||||
|
|
|
@ -6,7 +6,7 @@ at {{ domain }}. In order to set a new password for the
|
|||
{{ username }} account, please go to the following link and
|
||||
follow the instructions there:
|
||||
|
||||
http://{{ domain }}{% url confirm_account username today realm auth %}
|
||||
http://{{ domain }}{% url "confirm_account" username today realm auth %}
|
||||
|
||||
This link will expire in {{ expire }} days.
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@ at {{ domain }}. In order to set a new password for the
|
|||
{{ username }} account, please go to the following link and
|
||||
follow the instructions there:
|
||||
|
||||
https://{{ domain }}{% url confirm_password_reset username today realm auth %}
|
||||
https://{{ domain }}{% url "confirm_password_reset" username today realm auth %}
|
||||
|
||||
This link will expire in {{ expire }} days.
|
||||
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue