datatracker/ietf/templates/ietfworkflows/noworkflow_state_form.html
Ole Laursen 3f0bc27e0a Revamp wording in no work flow-yet template to be less complicated and
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
2011-11-01 15:23:12 +00:00

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>