source: remit/urls.py @ ea76b01

client
Last change on this file since ea76b01 was 3a0c51b, checked in by Alex Dehnert <adehnert@…>, 15 years ago

Top navigation bar

  • Property mode set to 100644
File size: 1.3 KB
RevLine 
[719e4bb]1from django.conf.urls.defaults import *
[dbc9bf9]2from django.contrib.auth.views import login
[719e4bb]3
[cafab4c]4import settings
5
[f468e6d]6# Necessary views
[7c3ea05]7import finance_core.views
[f468e6d]8
[719e4bb]9# Uncomment the next two lines to enable the admin:
[13a23ce]10from django.contrib import admin
11admin.autodiscover()
[719e4bb]12
13urlpatterns = patterns('',
14    # Example:
[3a0c51b]15    (r'^$', 'django.views.generic.simple.direct_to_template', {'template': 'index.html', 'extra_context': { 'pagename':'homepage' }, }, 'homepage'),
[7c3ea05]16    (r'^vouchers/', include('vouchers.urls')),
17    (r'^finance_core/', include('finance_core.urls')),
[719e4bb]18
19    # Uncomment the admin/doc line below and add 'django.contrib.admindocs'
20    # to INSTALLED_APPS to enable admin documentation:
[13a23ce]21    (r'^admin/doc/', include('django.contrib.admindocs.urls')),
[719e4bb]22
23    # Uncomment the next line to enable the admin:
[13a23ce]24    (r'^admin/(.*)', admin.site.root),
[dbc9bf9]25    (r'^accounts/login/', login, ),
[719e4bb]26)
[cafab4c]27
28if settings.DEBUG:
29    from django.views.static import serve
30    _media_url = settings.MEDIA_URL
31    if _media_url.startswith('/'):
32        _media_url = _media_url[1:]
33        urlpatterns += patterns('',
34                                (r'^%s(?P<path>.*)$' % _media_url,
35                                serve,
36                                {'document_root': settings.MEDIA_ROOT}))
37    del(_media_url, serve)
Note: See TracBrowser for help on using the repository browser.