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
This commit is contained in:
Ole Laursen 2011-11-01 15:23:12 +00:00
parent 76dd5aa53b
commit 3f0bc27e0a

View file

@ -5,20 +5,17 @@
</tr>
<tr style="vertical-align: top;"><td style="width: 50%;">
<div class="field{% if form.errors.comment %} error{% endif %}">
{{ form.errors.comment }}
{{ 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.errors.weeks }}
{{ 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 %}">
<p>
You can manage different WGs, please select the WG in wich you want to call for adoption this draft
</p>
{{ form.errors.wg }}
Select a WG: {{ form.wg }}
Adopt in WG: {{ form.wg }}
{{ form.wg.errors }}
</div>
<input type="submit" name="change" value="Call for adoption" />
</td></tr>