~widelands-dev/widelands-website/django_staticfiles

« back to all changes in this revision

Viewing changes to pybb/urls.py

  • Committer: Shevonar
  • Date: 2012-04-19 19:46:21 UTC
  • mto: This revision was merged to the branch mainline in revision 330.
  • Revision ID: infomh@anmaruco.de-20120419194621-lac98edodt220fux
Added new design for forums

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
urlpatterns = patterns('',
12
12
    # Misc
13
13
    url('^$', views.index, name='pybb_index'),
14
 
    # url('^category/(?P<category_id>\d+)/$', views.show_category, name='pybb_category'),
 
14
    url('^category/(?P<category_id>\d+)/$', views.show_category, name='pybb_category'),
15
15
    url('^forum/(?P<forum_id>\d+)/$', views.show_forum, name='pybb_forum'),
16
16
    url('^feeds/(?P<url>.*)/$', 'django.contrib.syndication.views.feed',
17
17
        {'feed_dict': feeds}, name='pybb_feed'),