fix: Add reminder to not include ADs in "people who must be present" (#4527)

* fix: Add reminder to not include ADs in "people who must be present"

* Fix typo.
This commit is contained in:
Lars Eggert 2022-09-30 20:55:36 +03:00 committed by GitHub
parent 2058522a0c
commit 8a6ff176af
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -27,7 +27,16 @@
{% endfor %}
{% endif %}
<tr class="bg1"><td>Number of Attendees:{% if not is_virtual %}<span class="required">*</span>{% endif %}</td><td>{{ form.attendees.errors }}{{ form.attendees }}</td></tr>
<tr class="bg2"><td>People who must be present:</td><td>{{ form.bethere.errors }}{{ form.bethere }}</td></tr>
<tr class="bg2">
<td>People who must be present:</td>
<td>
{{ form.bethere.errors }}
{{ form.bethere }}
<p class="fw-bold text-danger">
You should not include the Area Directors; they will be added automatically.
</p>
</td>
</tr>
<tr class="bg1"><td>Conflicts to Avoid:</td>
<td>
<table>
@ -121,4 +130,4 @@
<li><button type="button" onclick="history.back()">Back</button></li>
</ul>
</div>
</form>
</form>