upstream/v2026.1.0 #12

Merged
simon merged 241 commits from upstream/v2026.1.0 into master 2026-02-03 21:56:32 +00:00
2 changed files with 6 additions and 1 deletions
Showing only changes of commit a0dae48cec - Show all commits

View File

@@ -60,7 +60,7 @@
{% endif %}
{% if providers %}
<ul class="list-inline text-center blank-after">
<ul id="customer-account-login-providers" class="list-inline text-center blank-after">
{% for provider in providers %}
<li>
<a href="{% eventurl request.organizer "presale:organizer.customer.login" provider=provider.pk %}?{{ request.META.QUERY_STRING }}"

View File

@@ -731,6 +731,11 @@ $(function () {
$(countInput).trigger("change");
});
});
$("#customer-account-login-providers a").click(function () {
// Prevent double-submit, see also https://github.com/pretix/pretix/issues/5836
$(this).addClass("disabled");
});
});
function copy_answers(elements, answers) {