actually cover the chair-of-one-group scenario, fix error output so it can't produce warnings if there are no errors - Legacy-Id: 3554
24 lines
891 B
HTML
24 lines
891 B
HTML
<form action="" method="post">
|
|
<table class="ietf-table edit-form" style="width: 100%;">
|
|
<tr>
|
|
<th>Adopt this draft in your WG</th>
|
|
</tr>
|
|
<tr style="vertical-align: top;"><td style="width: 50%;">
|
|
<div class="field{% if form.errors.comment %} error{% endif %}">
|
|
{{ form.comment.errors }}
|
|
Comment: <span class="required">*</span><br />
|
|
<textarea name="comment">{{ form.data.comment }}</textarea>
|
|
</div>
|
|
<div class="field{% if form.errors.weeks %} error{% endif %}">
|
|
{{ form.weeks.errors }}
|
|
Estimated time in 'Call for Adoption by WG Issued': <input type="text" name="weeks" value="{{ form.data.weeks }}" /> (in weeks)
|
|
</div>
|
|
<div class="field{% if form.errors.wg %} error{% endif %}">
|
|
Adopt in WG: {{ form.wg }}
|
|
{{ form.wg.errors }}
|
|
</div>
|
|
<input type="submit" name="change" value="Call for adoption" />
|
|
</td></tr>
|
|
</table>
|
|
</form>
|