~widelands-dev/widelands-website/django_staticfiles

« back to all changes in this revision

Viewing changes to urls.py

  • Committer: Holger Rapp
  • Date: 2009-02-21 18:24:02 UTC
  • Revision ID: sirver@kallisto.local-20090221182402-k3tuf5c4gjwslbjf
Main Page contains now the same informations as before

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
    (r'^accounts/logout/(next=(?P<next_page>.*))?$', 'django.contrib.auth.views.logout'),
15
15
    (r'^accounts/', include('registration.urls')),
16
16
                       
17
 
    # 3rd party
 
17
    # 3rd party, unmodified
 
18
    (r'^notification/', include('notification.urls')),
 
19
 
 
20
    # 3rd party, modified for widelands
18
21
    (r'^wiki/', include('wiki.urls')),
19
 
    (r'^notification/', include('notification.urls')),
 
22
    (r'^news/', include('news.urls')),
20
23
    
21
24
    # WL specific:
22
25
    url(r'^$', mainpage, name="mainpage"),