diff options
author | your_name | 2015-09-21 16:20:57 +0530 |
---|---|---|
committer | your_name | 2015-09-21 16:20:57 +0530 |
commit | 102d861dec83108aff90afeefbccbe5f80d8c16b (patch) | |
tree | ed18526b0ff6af68af5c7670f13e49ed5fa119e4 /forums | |
parent | 30d80e37ee5604196f465c2b2c73b1d1a4f11f79 (diff) | |
download | spoken-tutorial-forums-102d861dec83108aff90afeefbccbe5f80d8c16b.tar.gz spoken-tutorial-forums-102d861dec83108aff90afeefbccbe5f80d8c16b.tar.bz2 spoken-tutorial-forums-102d861dec83108aff90afeefbccbe5f80d8c16b.zip |
Subject:video tile, minute-range and second-range auto selected.
Description:
1) click on link post questions on forum from spoken-website.
2) current time of video will get fetch and set as minute and sec
Diffstat (limited to 'forums')
-rw-r--r-- | forums/settings.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/forums/settings.py b/forums/settings.py index 774617a..3134444 100644 --- a/forums/settings.py +++ b/forums/settings.py @@ -19,7 +19,7 @@ MANAGERS = ADMINS DATABASES = { 'default': { 'ENGINE': 'django.db.backends.mysql', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'. - 'NAME': 'forums', # Or path to database file if using sqlite3. + 'NAME': db, # Or path to database file if using sqlite3. # The following settings are not used with sqlite3: 'USER': db_user, 'PASSWORD': db_pass, @@ -28,7 +28,7 @@ DATABASES = { }, 'spoken': { 'ENGINE': 'django.db.backends.mysql', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'. - 'NAME': 'spoken', # Or path to database file if using sqlite3. + 'NAME': sdb, # Or path to database file if using sqlite3. # The following settings are not used with sqlite3: 'USER': db_user, 'PASSWORD': db_pass, |