mirror of https://github.com/zulip/zulip.git
28 lines
1.3 KiB
Python
28 lines
1.3 KiB
Python
from django.conf import settings
|
|
from django.conf.urls import patterns, include, url
|
|
import os.path
|
|
|
|
# Uncomment the next two lines to enable the admin:
|
|
# from django.contrib import admin
|
|
# admin.autodiscover()
|
|
|
|
urlpatterns = patterns('',
|
|
url(r'^$', 'zephyr.views.home', name='home'),
|
|
url(r'^update$', 'zephyr.views.update', name='update'),
|
|
url(r'^get_updates$', 'zephyr.views.get_updates', name='get_updates'),
|
|
url(r'^zephyr/', 'zephyr.views.zephyr', name='zephyr'),
|
|
url(r'^personal-zephyr/', 'zephyr.views.personal_zephyr', name='personal_zephyr'),
|
|
url(r'^accounts/home/', 'zephyr.views.accounts_home', name='accounts_home'),
|
|
url(r'^accounts/login/', 'django.contrib.auth.views.login', {'template_name': 'zephyr/login.html'}),
|
|
url(r'^accounts/logout/', 'django.contrib.auth.views.logout', {'template_name': 'zephyr/index.html'}),
|
|
url(r'^accounts/register/', 'zephyr.views.register', name='register'),
|
|
url(r'^static/(?P<path>.*)$', 'django.views.static.serve',
|
|
{'document_root': os.path.join(settings.SITE_ROOT, 'static/')})
|
|
|
|
# Uncomment the admin/doc line below to enable admin documentation:
|
|
# url(r'^admin/doc/', include('django.contrib.admindocs.urls')),
|
|
|
|
# Uncomment the next line to enable the admin:
|
|
# url(r'^admin/', include(admin.site.urls)),
|
|
)
|