From fcf9f0054e4e4145afcb2248c111c284714426dc Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Tue, 29 Oct 2019 20:01:35 +0100 Subject: [PATCH] Fix #1328 -- Show internal name in list of categories --- .../control/templates/pretixcontrol/items/categories.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pretix/control/templates/pretixcontrol/items/categories.html b/src/pretix/control/templates/pretixcontrol/items/categories.html index 70da3fa967..237062ccf5 100644 --- a/src/pretix/control/templates/pretixcontrol/items/categories.html +++ b/src/pretix/control/templates/pretixcontrol/items/categories.html @@ -37,7 +37,7 @@ {% for c in categories %} - {{ c.name }} + {{ c.internal_name|default:c.name }}