Skip to content

Commit

Permalink
[#2065] Display assignee on recruitment list
Browse files Browse the repository at this point in the history
  • Loading branch information
pbanaszkiewicz committed Mar 15, 2022
1 parent 840a456 commit 30513ba
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions amy/templates/recruitment/instructorrecruitment_list.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,11 @@ <h4 class="mt-4">
<p class="lead">
<i class="far fa-calendar"></i> {% human_daterange object.event.start object.event.end %}<br>
{% if "online" in object.event.tags.strings %}
<i class="fa fa-globe"></i> online
<i class="fa fa-globe"></i> online <br>
{% else %}
<i class="fa fa-users"></i> in-person
<i class="fa fa-users"></i> in-person <br>
{% endif %}
<i class="fas fa-user-cog"></i> {% if object.assigned_to %}Assigned to: <a href="{{ object.assigned_to.get_absolute_url }}">{{ object.assigned_to.full_name }}</a>{% else %}Unassigned{% endif %}
</p>
<div class="card recruitment-notes">
<div class="card-body">
Expand Down

0 comments on commit 30513ba

Please sign in to comment.