Changes when returning_item is automatically set to match the current IESGs preferences. Removes several chunks of dead code related to editing telechat dates. Improves returning item tests. Refactored multiple edit_telechat functions into one function in doc_views. Added a helper function for determining if ballots have changed to isolate the implementation. Fixed the issue with update_agenda setting the returning item bit even when the user explicitly said not to. Added prompting to encourage proper setting of the returning item bit to the edit_telechat view. Fixes #1209 - Legacy-Id: 8369 Note: SVN reference [8262] has been migrated to Git commit 9d8d0d63e2338d6fa81a82c553b8c6a1c3a105c1 Note: SVN reference [8263] has been migrated to Git commit 35a7436b782fc45e224ac9ea29bfb535fd3ce959
37 lines
720 B
HTML
37 lines
720 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}
|
|
Set Telechat Date for {{ doc.name }}
|
|
{% endblock %}
|
|
|
|
{% block morecss %}
|
|
form.telechat-date td.actions {
|
|
padding-top: 1em;
|
|
}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
{% load ietf_filters %}
|
|
<h1>Set Telechat Date for {{ doc.name }}</h1>
|
|
|
|
<form class="telechat-date" action="" method="post">{% csrf_token %}
|
|
<table>
|
|
{{ form.as_table }}
|
|
<tr>
|
|
<td></td>
|
|
<td class="actions">
|
|
<a href="{% url "doc_view" name=doc.name %}">Back</a>
|
|
<input type="submit" value="Save"/>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
{% if prompts %}
|
|
<div>
|
|
{% for prompt in prompts %}
|
|
<div class="prompt">{{prompt}}</div>
|
|
{% endfor %}
|
|
</div>
|
|
{% endif %}
|
|
{% endblock %}
|