mirror of
https://github.com/pretix/pretix.git
synced 2026-02-25 09:52:27 +00:00
Compare commits
3 Commits
mail-perf
...
error-back
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
dd3821983f | ||
|
|
119cc50897 | ||
|
|
61f9cf13b4 |
@@ -8,9 +8,6 @@
|
|||||||
<h1>{% trans "Not found" %}</h1>
|
<h1>{% trans "Not found" %}</h1>
|
||||||
<p>{% trans "I'm afraid we could not find the the resource you requested." %}</p>
|
<p>{% trans "I'm afraid we could not find the the resource you requested." %}</p>
|
||||||
<p>{{ exception }}</p>
|
<p>{{ exception }}</p>
|
||||||
<p class="links">
|
|
||||||
<a id='goback' href='#'>{% trans "Take a step back" %}</a>
|
|
||||||
</p>
|
|
||||||
{% if request.user.is_staff and not staff_session %}
|
{% if request.user.is_staff and not staff_session %}
|
||||||
<form action="{% url 'control:user.sudo' %}?next={{ request.path|add:"?"|add:request.GET.urlencode|urlencode }}" method="post">
|
<form action="{% url 'control:user.sudo' %}?next={{ request.path|add:"?"|add:request.GET.urlencode|urlencode }}" method="post">
|
||||||
<p>
|
<p>
|
||||||
|
|||||||
@@ -1,14 +1,14 @@
|
|||||||
{% extends "pretixpresale/event/base.html" %}
|
{% extends "pretixpresale/event/base.html" %}
|
||||||
{% load i18n %}
|
{% load i18n %}
|
||||||
{% load bootstrap3 %}
|
{% load bootstrap3 %}
|
||||||
{% block title %}{% trans "Resend order links" %}{% endblock %}
|
{% block title %}{% trans "Resend order link" %}{% endblock %}
|
||||||
{% block custom_header %}
|
{% block custom_header %}
|
||||||
{{ block.super }}
|
{{ block.super }}
|
||||||
<meta name="robots" content="noindex, nofollow">
|
<meta name="robots" content="noindex, nofollow">
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<h2>
|
<h2>
|
||||||
{% trans "Resend order links" %}
|
{% trans "Resend order link" %}
|
||||||
</h2>
|
</h2>
|
||||||
<p>
|
<p>
|
||||||
{% blocktrans trimmed %}
|
{% blocktrans trimmed %}
|
||||||
|
|||||||
@@ -1510,7 +1510,10 @@ class OrderChangeMixin:
|
|||||||
'max_count': iao.max_count,
|
'max_count': iao.max_count,
|
||||||
'iao': iao,
|
'iao': iao,
|
||||||
'items': [i for i in items if not i.require_voucher],
|
'items': [i for i in items if not i.require_voucher],
|
||||||
'items_missing': {k: v for k, v in current_addon_products_missing.items() if v},
|
'items_missing': {
|
||||||
|
k: v for k, v in current_addon_products_missing.items()
|
||||||
|
if v and k[0].category_id == iao.addon_category_id
|
||||||
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
return positions
|
return positions
|
||||||
|
|||||||
Reference in New Issue
Block a user