Skip to content

Commit

Permalink
fix: Be a little clearer when feedback is closed (or not yet open).
Browse files Browse the repository at this point in the history
  • Loading branch information
pselkirk committed Jun 21, 2023
1 parent d1d7f87 commit 1fb9a8e
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion ietf/templates/nomcom/feedback.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,20 @@
<p id="instructions" class="alert alert-info my-3">
{% if nomcom.group.state_id == 'conclude' %}
Feedback to this NomCom is closed.
{% elif positions|length != 0 and topics|length != 0 %}
Select a nominee or topic from the list on the right to obtain a new feedback form.
{% elif positions|length != 0 %}
Select a nominee from the list on the right to obtain a new feedback form.
{% elif topics|length != 0 %}
Select a topic from the list on the right to obtain a new feedback form.
{% else %}
Select a nominee from the list of nominees on the right to obtain a new feedback form.
This NomCom is not accepting feedback at this time.
{% endif %}
</p>
{% if nomcom|has_publickey %}
<div class="row">
<div id="nominees" class="col-sm-2 order-last">
{% if positions|length != 0 %}
<h2 class="navskip mt-4">Nominees</h2>
<p>
A number after a name indicates
Expand Down Expand Up @@ -43,6 +50,8 @@ <h3 class="navskip mt-3">{{ p.name }}</h3>
</div>
{% endif %}
{% endfor %}
{% endif %}
{% if topics|length != 0 %}
<h2 class="navskip mt-4">Topics</h2>
<div class="d-grid gap-3">
{% for t in topics %}
Expand All @@ -58,6 +67,7 @@ <h2 class="navskip mt-4">Topics</h2>
</a>
{% endfor %}
</div>
{% endif %}
</div>
<div class="col-sm-10">
{% if form %}
Expand Down

0 comments on commit 1fb9a8e

Please sign in to comment.