mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-12-02 14:34:05 +03:00
35 lines
1018 B
Python
35 lines
1018 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.conf import settings
|
|
from django.conf.urls import patterns, include, url
|
|
from django.conf.urls.static import static
|
|
from django.views.generic import TemplateView
|
|
|
|
# Uncomment the next two lines to enable the admin:
|
|
from django.contrib import admin
|
|
admin.autodiscover()
|
|
|
|
urlpatterns = patterns('',
|
|
url(r'^$',
|
|
TemplateView.as_view(template_name='pages/home.html'),
|
|
name="home"),
|
|
url(r'^about/$',
|
|
TemplateView.as_view(template_name='pages/about.html'),
|
|
name="about"),
|
|
|
|
# Uncomment the next line to enable the admin:
|
|
url(r'^admin/', include(admin.site.urls)),
|
|
|
|
# User management
|
|
url(r'^users/', include("users.urls", namespace="users")),
|
|
url(r'^accounts/', include('allauth.urls')),
|
|
|
|
# Uncomment the next line to enable avatars
|
|
url(r'^avatar/', include('avatar.urls')),
|
|
|
|
# Your stuff: custom urls go here
|
|
|
|
) + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
|
|
|