12
12
from django.conf.urls import *
16
url(r'^$', index, name="wlhelp_index"),
16
url(r'^$', index, name='wlhelp_index'),
19
url(r'^(?P<tribe>\w+)/$', tribe_details, name="wlhelp_tribe_details"),
20
url(r'^(?P<tribe>\w+)/wares/(?P<ware>[^/]+)/$', ware_details, name="wlhelp_ware_details"),
21
url(r'^(?P<tribe>\w+)/buildings/(?P<building>[^/]+)/$', building_details, name="wlhelp_building_details"),
22
url(r'^(?P<tribe>\w+)/workers/(?P<worker>[^/]+)/$', worker_details, name="wlhelp_worker_details"),
19
url(r'^(?P<tribe>\w+)/$', tribe_details, name='wlhelp_tribe_details'),
20
url(r'^(?P<tribe>\w+)/wares/(?P<ware>[^/]+)/$',
21
ware_details, name='wlhelp_ware_details'),
22
url(r'^(?P<tribe>\w+)/buildings/(?P<building>[^/]+)/$',
23
building_details, name='wlhelp_building_details'),
24
url(r'^(?P<tribe>\w+)/workers/(?P<worker>[^/]+)/$',
25
worker_details, name='wlhelp_worker_details'),
24
url(r'^(?P<tribe>\w+)/workers/$', workers, name="wlhelp_workers"),
25
url(r'^(?P<tribe>\w+)/wares/$', wares, name="wlhelp_wares"),
26
url(r'^(?P<tribe>\w+)/buildings/$', buildings, name="wlhelp_buildings"),
27
url(r'^(?P<tribe>\w+)/workers/$', workers, name='wlhelp_workers'),
28
url(r'^(?P<tribe>\w+)/wares/$', wares, name='wlhelp_wares'),
29
url(r'^(?P<tribe>\w+)/buildings/$', buildings, name='wlhelp_buildings'),