~widelands-dev/widelands-website/trunk

« back to all changes in this revision

Viewing changes to wlwebchat/urls.py

  • Committer: kaputtnik
  • Date: 2019-05-30 18:20:02 UTC
  • mto: This revision was merged to the branch mainline in revision 540.
  • Revision ID: kaputtnik-20190530182002-g7l91m1xo28clghv
adjusted README; first commit on the new server

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
# encoding: utf-8
3
3
#
4
4
 
5
 
from django.conf.urls.defaults import *
6
 
from views import webchat
 
5
from django.conf.urls import *
 
6
from .views import webchat
7
7
 
8
 
urlpatterns = patterns('',
 
8
urlpatterns = [
9
9
    # Uncomment the next line to enable the admin:
10
10
    url(r'^$', webchat, name='webchat_index'),
11
 
 
12
 
)
13
 
 
 
11
]