mirror of
https://github.com/evennia/evennia.git
synced 2026-03-20 14:56:30 +01:00
8 lines
265 B
Python
Executable file
8 lines
265 B
Python
Executable file
from django.conf.urls.defaults import *
|
|
|
|
urlpatterns = patterns('game.web.apps.news.views',
|
|
(r'^show/(?P<entry_id>\d+)/$', 'show_news'),
|
|
(r'^archive/$', 'news_archive'),
|
|
(r'^search/$', 'search_form'),
|
|
(r'^search/results/$', 'search_results'),
|
|
)
|