File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed
uber/templates/registration Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -47,7 +47,13 @@ <h3>Pending Badges</h3>
47
47
< td > {{ badge.email|email_to_link }}</ td >
48
48
< td > {{ badge.badge_type_label }}</ td >
49
49
< td > {{ badge.ribbon_labels|join(", ") }}</ td >
50
- < td > {{ "Need Not Pay" if badge.paid == c.NEED_NOT_PAY else badge.badge_cost|format_currency }}</ td >
50
+ < td >
51
+ {% if badge.group and badge.group.cost == 0 and badge.group.auto_recalc == False %}
52
+ Comped Group
53
+ {% else %}
54
+ {{ "Need Not Pay" if badge.paid == c.NEED_NOT_PAY else badge.badge_cost|format_currency }}
55
+ {% endif %}
56
+ </ td >
51
57
< td > {{ badge.created_info.who }}</ td >
52
58
< td > {{ badge.admin_notes }}</ td >
53
59
< td > < button class ="btn btn-primary " onClick ="approve('{{ badge.id }}') "> Approve Badge</ button > </ td >
You can’t perform that action at this time.
0 commit comments