website/src/resources/urls.py

15 lines
490 B
Python
Raw Normal View History

2022-01-08 14:12:09 +01:00
from django.urls import path
from . import views
app_name = "resources"
urlpatterns = [
path('', views.resources, name='resources'),
path('42ctf', views.ctf42, name='42ctf'),
path('tools', views.tools, name='tools'),
path('create_challenge', views.create_challenge, name='create_challenge'),
path('translate', views.translate, name='translate'),
path('edit', views.edit, name='edit'),
path('donate', views.donate, name='donate'),
2022-01-08 14:12:09 +01:00
]