~widelands-dev/widelands-website/django_staticfiles

« back to all changes in this revision

Viewing changes to wlmaps/urls.py

  • Committer: franku
  • Date: 2018-05-06 08:20:39 UTC
  • mto: This revision was merged to the branch mainline in revision 494.
  • Revision ID: somal@arcor.de-20180506082039-v8n40alffhi2ulct
This is an Attribute error

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
from models import Map
5
5
from views import *
6
6
 
7
 
 
8
7
urlpatterns = [
9
8
    url(r'^$', index, name='wlmaps_index'),
10
9
    url(r'^upload/$', upload, name='wlmaps_upload'),
15
14
        edit_comment, name='wlmaps_edit_comment'),
16
15
    url(r'^(?P<map_slug>[-\w]+)/download/$',
17
16
        download, name='wlmaps_download'),
 
17
 
 
18
    url(r'^(?P<map_slug>[-\w]+)/rate/$',
 
19
        rate, name='wlmaps_rate'),
18
20
]