This repository has been archived on 2026-03-30. You can view files and clone it, but cannot push or open issues or pull requests.
RepApp/rc_hip/repapp/urls.py

12 lines
223 B
Python
Raw Normal View History

2023-04-18 19:13:30 +00:00
"""
Urls of RepApp.
"""
2023-04-16 11:01:31 +00:00
from django.urls import path
from . import views
urlpatterns = [
2023-04-18 18:04:32 +00:00
path("", views.IndexView.as_view(), name="index"),
2023-04-18 19:13:30 +00:00
path("<int:cafe_id>/", views.register_device, name="register_device"),
2023-04-16 11:01:31 +00:00
]