feat: redirect to itch.io

This commit is contained in:
Gerard Gascón 2025-04-24 12:59:20 +02:00
parent 3f5f2feff8
commit ffe28e9a19
2 changed files with 6 additions and 0 deletions

View file

@ -3,6 +3,7 @@ from django.urls import path
from . import views
urlpatterns = [
path('', views.index, name='index'),
path('add/<str:origin>/<str:name>/<str:color>/<str:shirt>/<str:hat>/<str:decor>/', views.add, name='add'),
path('get/<str:origin>/', views.get, name='get'),
]