Merge pull request #158 from ungleich/feature/new_digitalglarus

Feature/new digitalglarus
This commit is contained in:
Levi Velázquez 2017-01-06 10:26:01 -05:00 committed by GitHub
commit 5c7712ff88
116 changed files with 16325 additions and 75 deletions

View file

@ -109,6 +109,7 @@ INSTALLED_APPS = (
'hosting',
'digitalglarus',
'nosystemd',
'datacenterlight',
)
MIDDLEWARE_CLASSES = (

View file

@ -11,11 +11,13 @@ from ungleich_page.views import LandingView
import debug_toolbar
urlpatterns = [ url(r'^index.html$', LandingView.as_view()),
url(r'^hosting/', include('hosting.urls', namespace="hosting")),
url(r'^hosting/', include('hosting.urls', namespace="hosting")),
url(r'^railshosting/', RailsHostingView.as_view(), name="rails.hosting"),
url(r'^nodehosting/', NodeJSHostingView.as_view(), name="node.hosting"),
url(r'^djangohosting/', DjangoHostingView.as_view(), name="django.hosting"),
url(r'^nosystemd/', include('nosystemd.urls', namespace="nosystemd")),
url(r'^datacenterlight', include('datacenterlight.urls', namespace="datacenterlight")),
url(r'^taggit_autosuggest/', include('taggit_autosuggest.urls')),
url(r'^jsi18n/(?P<packages>\S+?)/$',
'django.views.i18n.javascript_catalog'),