[A11y] Cart renewal (#5109)

Allow customers to extend their cart reservation up to 11 times the configured reservation time
This commit is contained in:
luelista
2025-05-21 17:02:21 +02:00
committed by GitHub
parent 7c59ec51ca
commit a84beef269
8 changed files with 469 additions and 154 deletions

View File

@@ -0,0 +1,18 @@
# Generated by Django 4.2.20 on 2025-05-14 14:58
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('pretixbase', '0279_discount_event_date_from_discount_event_date_until'),
]
operations = [
migrations.AddField(
model_name='cartposition',
name='max_extend',
field=models.DateTimeField(null=True),
),
]