48.4.1
by Holger Rapp
Put dead ugly webchat back on page |
1 |
#!/usr/bin/env python -tt
|
2 |
# encoding: utf-8
|
|
3 |
#
|
|
4 |
||
5 |
from django.conf.urls.defaults import * |
|
6 |
from views import webchat |
|
7 |
||
8 |
urlpatterns = patterns('', |
|
9 |
# Uncomment the next line to enable the admin:
|
|
10 |
url(r'^$', webchat, name='webchat_index'), |
|
11 |
||
12 |
)
|
|
13 |