summaryrefslogtreecommitdiff
path: root/Scipy2018
diff options
context:
space:
mode:
authorPrashant S2018-08-23 17:40:00 +0530
committerGitHub2018-08-23 17:40:00 +0530
commitfd8043402a56fe47f47938b3874c93607616a20c (patch)
tree840a015b9bb62c4b7715212453f1235411f5efb1 /Scipy2018
parent5fc9c374d7139d8364519a9f28f07be645d62eeb (diff)
parent83e14c33bae4ef1ad5e8546408caf7232e962c75 (diff)
downloadSciPy2018-master.tar.gz
SciPy2018-master.tar.bz2
SciPy2018-master.zip
Merge pull request #10 from FOSSEE/developmentHEADmaster
added new html files and views.
Diffstat (limited to 'Scipy2018')
-rwxr-xr-xScipy2018/config.py4
-rw-r--r--Scipy2018/settings.py6
-rw-r--r--Scipy2018/urls.py23
3 files changed, 27 insertions, 6 deletions
diff --git a/Scipy2018/config.py b/Scipy2018/config.py
index 14ef2f8..87cc671 100755
--- a/Scipy2018/config.py
+++ b/Scipy2018/config.py
@@ -29,8 +29,8 @@ EMAIL_HOST_USER_SERVER = ''
EMAIL_HOST_PASSWORD_SERVER = ''
EMAIL_USE_TLS_SERVER = False
#########################################
-ALLOWED_HOSTS = 'allowed host value'
+ALLOWED_HOSTS_VAL = 'allowed host value'
DEBUG_VAL = True
SITE = 'SITE'
-ROOT_URL = 'root url value' #http://127.0.0.1:8000
+ROOT_URL_VAL = 'root url value' #http://127.0.0.1:8000
#########################################
diff --git a/Scipy2018/settings.py b/Scipy2018/settings.py
index b931210..0aea718 100644
--- a/Scipy2018/settings.py
+++ b/Scipy2018/settings.py
@@ -40,6 +40,7 @@ INSTALLED_APPS = [
'django.contrib.messages',
'django.contrib.staticfiles',
'website',
+ 'widget_tweaks',
]
MIDDLEWARE = [
@@ -57,7 +58,7 @@ ROOT_URL = ROOT_URL_VAL
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
- 'DIRS': [PROJECT_DIR + '/static/website/templates',],
+ 'DIRS': [PROJECT_DIR + '/static/website/templates', ],
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
@@ -80,7 +81,8 @@ WSGI_APPLICATION = 'Scipy2018.wsgi.application'
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.mysql',
- 'NAME': DB_NAME_DEFAULT, # Or path to database file if using sqlite3.
+ # Or path to database file if using sqlite3.
+ 'NAME': DB_NAME_DEFAULT,
'USER': DB_USER_DEFAULT,
'PASSWORD': DB_PASS_DEFAULT,
'HOST': DB_HOST_DEFAULT,
diff --git a/Scipy2018/urls.py b/Scipy2018/urls.py
index 291cf38..053f934 100644
--- a/Scipy2018/urls.py
+++ b/Scipy2018/urls.py
@@ -14,9 +14,28 @@ Including another URLconf
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
"""
from django.contrib import admin
-from django.urls import include, path
+from django.urls import include, path, re_path
+from django.contrib.auth import views as auth_views
+
urlpatterns = [
- path('', include('website.urls')),
+ re_path(r'^', include('website.urls', namespace='website')),
+ re_path(r'^accounts/',
+ include(('django.contrib.auth.urls', 'auth'), namespace='auth')),
path('admin/', admin.site.urls),
+
+ re_path(r'^', include('social.apps.django_app.urls', namespace='social')),
+
+ re_path(r'^forgotpassword/$', auth_views.PasswordResetView.as_view(
+ template_name='registration/password_reset_form.html'), name="password_reset"),
+ re_path(r'^password_reset/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$', auth_views.PasswordResetConfirmView.as_view(
+ template_name='registration/password_reset_confirm.html'), name='password_reset_confirm'),
+ re_path(r'^password_reset/mail_sent/$', auth_views.PasswordResetDoneView.as_view(template_name='registration/password_reset_done.html'),
+ name='password_reset_done'),
+ re_path(r'^password_reset/complete/$', auth_views.PasswordResetCompleteView.as_view(template_name='registration/password_reset_complete.html'),
+ name='password_reset_complete'),
+ re_path(r'^changepassword/$', auth_views.PasswordChangeView.as_view(template_name='registration/password_change_form.html'),
+ name='password_change'),
+ re_path(r'^password_change/done/$', auth_views.PasswordChangeDoneView.as_view(template_name='registration/password_change_done.html'),
+ name='password_change_done'),
]