Skip to content

Commit

Permalink
fix #68
Browse files Browse the repository at this point in the history
  • Loading branch information
brunosardinepi committed Jan 7, 2017
1 parent 81aa183 commit 53dcd46
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions locations/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@
url(r'^location/(?P<location_pk>\d+)/$', views.location_detail, name='location_detail'),

url(r'^world/create/$', views.world_create, name='world_create'),
url(r'^world/(?P<world_pk>\d+)/location/create/$', views.location_create, name='location_create'),
url(r'^location/create/$', views.location_create, name='location_create'),

url(r'^world/(?P<world_pk>\d+)/edit/$', views.world_update, name='world_update'),
url(r'^world/(?P<world_pk>\d+)/location/(?P<location_pk>\d+)/edit/$', views.location_update, name='location_update'),
url(r'^location/(?P<location_pk>\d+)/edit/$', views.location_update, name='location_update'),

# url(r'^import/$', views.campaign_import, name='campaign_import'),
# url(r'^(?P<campaign_pk>\d+)/export/$', views.campaign_export, name='campaign_export'),

url(r'^world/(?P<world_pk>\d+)/delete/$', views.world_delete, name='world_delete'),
url(r'^world/(?P<world_pk>\d+)/location/(?P<location_pk>\d+)/delete/$', views.location_delete, name='location_delete'),
url(r'^location/(?P<location_pk>\d+)/delete/$', views.location_delete, name='location_delete'),

url(r'^$', views.location_detail, name='location_detail'),
]

0 comments on commit 53dcd46

Please sign in to comment.