Fix trophy urls

This commit is contained in:
Roland Geider
2026-01-10 23:24:36 +01:00
parent 65a0108657
commit 3ad2310a41

View File

@@ -14,7 +14,7 @@
# along with Workout Manager. If not, see <http://www.gnu.org/licenses/>.
# Django
from django.urls import re_path
from django.urls import path
# wger
from wger.core.views.react import ReactView
@@ -23,13 +23,13 @@ from wger.core.views.react import ReactView
from .views import TrophiesOverview
urlpatterns = [
re_path(
path(
'',
ReactView.as_view(),
name='overview',
),
re_path(
'admin/overview/',
path(
'admin',
TrophiesOverview.as_view(),
name='admin-overview',
),