foundation.mozilla.org/network-api/networkapi/events/urls.py

8 строки
183 B
Python

from django.urls import re_path
from .views import tito_ticket_completed
urlpatterns = [
re_path("^ticket-completed/?$", tito_ticket_completed, name="tito-ticket-completed"),
]