Skip to content
Snippets Groups Projects
Select Git revision
  • 187b5bdab7588caf88a698c0b5e051c0f93a4d6f
  • master default protected
  • feat/new-image-formats
  • clickable-select-chevron
  • 2.20.0
  • 2.19.0
  • 2.18.0
  • 2.17.0
  • 2.16.1
  • 2.16.0
  • 2.15.0
  • 2.14.0
  • 2.13.0
  • 2.12.1
  • 2.11.0
  • 2.10.0
  • 2.9.1
  • 2.9.0
  • 2.8.0
  • 2.7.1
  • 2.7.0
  • 2.6.0
  • 2.5.2
  • 2.5.1
24 results

dropdown-button.pcss

Blame
  • urls.py 946 B
    # -*- coding: utf-8 -*-
    from django.conf.urls.defaults import *
    from django.contrib import admin
    from django.conf import settings
    
    urlpatterns = patterns(
        '',
        (r'^auth/', include('auth.urls')),
        (r'^helios/', include('helios.urls')),
    
        # SHOULD BE REPLACED BY APACHE STATIC PATH
        (r'booth/(?P<path>.*)$', 'django.views.static.serve', {'document_root' : settings.ROOT_PATH + '/heliosbooth'}),
        (r'verifier/(?P<path>.*)$', 'django.views.static.serve', {'document_root' : settings.ROOT_PATH + '/heliosverifier'}),
    
        (r'static/auth/(?P<path>.*)$', 'django.views.static.serve', {'document_root' : settings.ROOT_PATH + '/auth/media'}),
        (r'static/helios/(?P<path>.*)$', 'django.views.static.serve', {'document_root' : settings.ROOT_PATH + '/helios/media'}),
        (r'static/(?P<path>.*)$', 'django.views.static.serve', {'document_root' : settings.ROOT_PATH + '/server_ui/media'}),
    
        (r'^', include('server_ui.urls')),
    
        )