Skip to content

Commit c3905ad

Browse files
authored
Change the target of "My Orders" link (#639)
It should go to eventyay-common.
1 parent 6690901 commit c3905ad

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

src/pretix/control/navigation.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -284,12 +284,6 @@ def get_global_navigation(request):
284284
if not url:
285285
return []
286286
nav = [
287-
{
288-
'label': _('My orders'),
289-
'url': reverse('control:user.settings.orders'),
290-
'active': 'user.settings.orders' in url.url_name,
291-
'icon': 'shopping-cart',
292-
},
293287
{
294288
'label': _('My events'),
295289
'url': reverse('control:events'),

src/pretix/static/pretixcontrol/js/ui/popover.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ $(function () {
1313
const ticketsPath = `/control/`;
1414
const talksPath = `${talkHostNamePath}orga/event/`
1515
const mainDashboardPath = `/common/`;
16-
const orderPath = `/control/settings/orders/`;
16+
const orderPath = `/common/orders/`;
1717
const eventPath = `/control/events/`;
1818
const organizerPath = `/control/organizers/`;
1919

0 commit comments

Comments
 (0)