Skip to content

Commit e4e9601

Browse files
committed
display nomination acceptance status in user dashboard
1 parent 6832c6c commit e4e9601

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

templates/users/nominations_view.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ <h2>Nominations Received</h2>
2626
{% if nomination.nominator == request.user %}
2727
Self Nomination
2828
{% else %}
29-
Nomination from {{ nomination.nominator.first_name }} {{ nomination.nominator.last_name }}
29+
Nomination from {{ nomination.nominator.first_name }} {{ nomination.nominator.last_name }} {% if nomination.accepted %}<b>Accepted</b>{% else %}<i>Not accepted!</i>{% endif %}
3030
{% endif %}
3131
<a href="{{ nomination.get_absolute_url }}">
3232
{% if nomination.is_editable %}
33-
View/Edit
33+
View / Manage
3434
{% else %}
3535
View
3636
{% endif %}

0 commit comments

Comments
 (0)