mirror of
https://github.com/pretix/pretix.git
synced 2026-05-06 15:24:02 +00:00
Do not show "None" string to user
This commit is contained in:
@@ -100,7 +100,7 @@
|
||||
</td>
|
||||
<td>{{ e.item }}{% if e.variation %} – {{ e.variation }}{% endif %}</td>
|
||||
{% if seats %}
|
||||
<td>{{ e.seat }}</td>
|
||||
<td>{{ e.seat|default_if_none:"" }}</td>
|
||||
{% endif %}
|
||||
<td>
|
||||
{% if e.addon_to and e.addon_to.attendee_email %}
|
||||
@@ -108,7 +108,7 @@
|
||||
{% elif e.attendee_email %}
|
||||
{{ e.attendee_email }}
|
||||
{% else %}
|
||||
{{ e.order.email }}
|
||||
{{ e.order.email|default_if_none:"" }}
|
||||
{% endif %}
|
||||
</td>
|
||||
<td>
|
||||
|
||||
Reference in New Issue
Block a user