~widelands-dev/widelands-website/update_third_party_2019

« back to all changes in this revision

Viewing changes to wlscreens/urls.py

  • Committer: franku
  • Date: 2019-04-10 16:18:40 UTC
  • mfrom: (531.1.5 screens_ordering)
  • Revision ID: somal@arcor.de-20190410161840-29hlbwn3qsbctaa4
allow ordering of screenshots by adding a new column to the tables screenshots; reworked the corresponding admin pages

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
from views import *
6
6
 
7
7
urlpatterns = [
8
 
    url(r'^$', index, name='wlscreens_index'),
9
 
    url(r'^(?P<category_slug>[-\w]+)/$', category, name='wlscreens_category'),
 
8
    url(r'^$', CategoryList.as_view(), name='wlscreens_index'),
10
9
]