From e3e0c7f11ac295965ad99e9dc0fc4ff6a8325fd6 Mon Sep 17 00:00:00 2001 From: Patrick Hetu Date: Wed, 26 Nov 2014 15:37:27 -0500 Subject: [PATCH] ajout de la configuration pour auf-theme-bootstrap --- .../django14_auf/auf-theme-bootstrap/settings/60-auf_theme.py | 4 ++++ .../django14_auf/auf-theme-bootstrap/urls/60-auf_theme.py | 4 ++++ 2 files changed, 8 insertions(+) create mode 100644 configurations/django14_auf/auf-theme-bootstrap/settings/60-auf_theme.py create mode 100644 configurations/django14_auf/auf-theme-bootstrap/urls/60-auf_theme.py diff --git a/configurations/django14_auf/auf-theme-bootstrap/settings/60-auf_theme.py b/configurations/django14_auf/auf-theme-bootstrap/settings/60-auf_theme.py new file mode 100644 index 0000000..af446bf --- /dev/null +++ b/configurations/django14_auf/auf-theme-bootstrap/settings/60-auf_theme.py @@ -0,0 +1,4 @@ +INSTALLED_APPS += ( + 'auf_django_theme', +) + diff --git a/configurations/django14_auf/auf-theme-bootstrap/urls/60-auf_theme.py b/configurations/django14_auf/auf-theme-bootstrap/urls/60-auf_theme.py new file mode 100644 index 0000000..4eaa85c --- /dev/null +++ b/configurations/django14_auf/auf-theme-bootstrap/urls/60-auf_theme.py @@ -0,0 +1,4 @@ +urlpatterns += patterns('', + url(r'^/', include('auf_django_theme.urls')), +) + -- 1.7.10.4