~widelands-dev/widelands-website/django_staticfiles

« back to all changes in this revision

Viewing changes to wlscreens/urls.py

  • Committer: Holger Rapp
  • Date: 2009-02-20 12:25:18 UTC
  • Revision ID: holgerrapp@gmx.net-20090220122518-feaq34ta973snnct
Imported wikiapp into our repository, because we did some local changes (users must be logged in to edit wiki pages)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/usr/bin/env python -tt
2
 
# encoding: utf-8
3
 
from django.conf.urls import *
4
 
from models import Category, Screenshot
5
 
from views import *
6
 
 
7
 
urlpatterns = [
8
 
    url(r'^$', index, name='wlscreens_index'),
9
 
    url(r'^(?P<category_slug>[-\w]+)/$', category, name='wlscreens_category'),
10
 
]