This commit is contained in:
erichhasl
2018-01-08 13:07:39 +01:00
12 changed files with 119 additions and 1 deletions
+1
View File
@@ -49,6 +49,7 @@ USE_X_FORWARDED_HOST = True
# Application definition
INSTALLED_APPS = (
'news',
'captcha',
'datenbank',
'meingoethopia',
+3
View File
@@ -23,6 +23,9 @@ from .views import error_400, error_403, error_404, error_500
urlpatterns = static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
urlpatterns += [
url(r'^news/', include('news.urls',
namespace='news',
app_name='news')),
url(r'^meingoethopia/', include('meingoethopia.urls',
namespace='meingoethopia',
app_name='meingoethopia')),