AiForklift/magazine/urls.py
Jacob 0281d19f10 Adds UI, magazine visualisation and forklift
This commit adds the prototype of user interface, canvas on which magazine is drawn and forklift class.
2019-03-26 12:52:23 +01:00

9 lines
242 B
Python

from django.urls import path
from django.views.generic import TemplateView
from . import views
urlpatterns = [
path('', TemplateView.as_view(template_name='magazine/index.html')),
path('classify', views.classify, name='classify'),
]