mirror of
https://github.com/nikdoof/posmaster.git
synced 2025-12-20 05:09:24 +00:00
Initial import of the codebase
This commit is contained in:
7
posmaster/poscore/urls.py
Normal file
7
posmaster/poscore/urls.py
Normal file
@@ -0,0 +1,7 @@
|
||||
from django.conf.urls import patterns, include, url
|
||||
from poscore.views import TowerListView, TowerDetailView
|
||||
|
||||
urlpatterns = patterns('',
|
||||
url(r'^tower/$', TowerListView.as_view(), name='tower-list'),
|
||||
url(r'^tower/(?P<pk>\d+)/$', TowerDetailView.as_view(), name='tower-detail'),
|
||||
)
|
||||
Reference in New Issue
Block a user