Compare commits

..

1 Commits

Author SHA1 Message Date
Raphael Michel
dce2c0f749 Category selection: Search internal names (Z#23218630) 2025-12-19 15:45:43 +01:00
2 changed files with 1 additions and 4 deletions

View File

@@ -569,7 +569,7 @@ def category_select2(request, **kwargs):
page = 1
qs = request.event.categories.filter(
name__icontains=i18ncomp(query)
Q(name__icontains=i18ncomp(query)) | Q(internal_name__icontains=query)
).order_by('name')
total = qs.count()

View File

@@ -848,9 +848,6 @@ $table-bg-accent: rgba(128, 128, 128, 0.05);
outline: 2px solid $brand-primary;
outline-offset: 2px;
}
&:not([open]) {
display: none;
}
}
.pretix-widget-frame-isloading:focus {
outline: none;