Compare commits

..
2 changed files with 1 additions and 4 deletions
-3
View File
@@ -12,9 +12,6 @@
<meta charset="utf-8"> <meta charset="utf-8">
<link rel="icon" href="{% static "pretixbase/img/favicon.ico" %}"> <link rel="icon" href="{% static "pretixbase/img/favicon.ico" %}">
{% block custom_header %}{% endblock %} {% block custom_header %}{% endblock %}
{% if css_theme %}
<link rel="stylesheet" type="text/css" href="{{ css_theme }}" />
{% endif %}
</head> </head>
<body> <body>
<div class="container"> <div class="container">
+1 -1
View File
@@ -131,7 +131,7 @@ class VoucherList(PaginationMixin, EventPermissionRequiredMixin, ListView):
elif v.quota: elif v.quota:
prod = _('Any product in quota "{quota}"').format(quota=str(v.quota.name)) prod = _('Any product in quota "{quota}"').format(quota=str(v.quota.name))
else: else:
prod = _('Any product') prod = ""
row = [ row = [
v.code, v.code,
v.valid_until.isoformat() if v.valid_until else "", v.valid_until.isoformat() if v.valid_until else "",