add captcha

This commit is contained in:
erichhasl
2017-11-19 01:29:52 +01:00
parent 3d77881e76
commit 5af9d0d748
3 changed files with 7 additions and 0 deletions
+1
View File
@@ -43,6 +43,7 @@ USE_X_FORWARDED_HOST = True
# Application definition
INSTALLED_APPS = (
'captcha',
'datenbank',
'meingoethopia',
'startpage',
+1
View File
@@ -27,5 +27,6 @@ urlpatterns += [
url(r'^datenbank/', include('datenbank.urls', app_name='datenbank',
namespace='datenbank')),
url(r'^admin/', include(admin.site.urls)),
url(r'^captcha/', include('captcha.urls')),
url(r'^', include('startpage.urls', namespace='startpage', app_name='startpage'))
]