Added smartphone as scanner option

This commit is contained in:
2022-05-24 17:53:31 +02:00
parent 9adcee728a
commit 0b285b068c
8 changed files with 263 additions and 4 deletions

View File

@@ -5,5 +5,6 @@ app_name = 'booker'
urlpatterns = [
path('', views.IndexView.as_view(), name='index'),
path('smartphone_scanner/', views.SmartphoneScannerView.as_view(), name='smartphone_scanner'),
path('<str:scanner_id>/', views.scanner, name='scanner')
]