1
#!/usr/bin/env python -tt
6
# Created by Holger Rapp on 2009-02-26.
7
# Copyright (c) 2009 HolgerRapp@gmx.net. All rights reserved.
9
# Last Modified: $Date$
12
from django.conf.urls import *
16
url(r'^$', index, name='wlhelp_index'),
18
url(r'^(?P<tribe>\w+)/wares/(?P<ware>[^/]+)/$',
19
ware_details, name='wlhelp_ware_details'),
20
url(r'^(?P<tribe>\w+)/buildings/(?P<building>[^/]+)/$',
21
building_details, name='wlhelp_building_details'),
22
url(r'^(?P<tribe>\w+)/workers/(?P<worker>[^/]+)/$',
23
worker_details, name='wlhelp_worker_details'),
25
url(r'^(?P<tribe>\w+)/workers/$', workers, name='wlhelp_workers'),
26
url(r'^(?P<tribe>\w+)/wares/$', wares, name='wlhelp_wares'),
27
url(r'^(?P<tribe>\w+)/buildings/$', buildings, name='wlhelp_buildings'),