We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef6cb6d commit 6368ad0Copy full SHA for 6368ad0
backend/reviews/templates/grant-review.html
@@ -112,7 +112,11 @@ <h2>Grant</h2>
112
113
<div class="review-row">
114
<strong>Grant type</strong>
115
- <div>{{grant.get_grant_type_display}}</div>
+ <div>
116
+ {% for type_ in grant.grant_type %}
117
+ {{type_}}
118
+ {% endfor %}
119
+ </div>
120
</div>
121
122
backend/reviews/templates/grants-recap.html
@@ -507,7 +507,11 @@ <h3>
507
</li>
508
<li>
509
<strong>Grant type:</strong>
510
- <span>{{ item.get_grant_type_display }}</span>
+ <span>
511
+ {% for type_ in item.grant_type %}
512
513
514
+ </span>
515
516
517
<strong>Needs:</strong>
0 commit comments