Skip to content

Commit

Permalink
Refs #1349 - Use all to correctly filter empty grants/corp members (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
glasnt committed Oct 21, 2023
1 parent 5646508 commit 7ef8d77
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions djangoproject/templates/foundation/meeting_detail.html
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ <h3>Treasurer&#8217;s report</h3>
{{ meeting.treasurer_report_html|safe }}
{% endif %}

{% if meeting.grants_approved %}
{% if meeting.grants_approved.all %}
<h2>Grants approved </h2>

<ul>
Expand All @@ -59,7 +59,7 @@ <h2>Individual members approved</h2>
</ul>
{% endif %}

{% if meeting.corporate_members_approved %}
{% if meeting.corporate_members_approved.all %}
<h2>Corporate members approved</h2>

<ul>
Expand Down

0 comments on commit 7ef8d77

Please sign in to comment.