Changeset 350f0e7 in sicp for sicp


Ignore:
Timestamp:
May 8, 2015, 10:45:25 AM (9 years ago)
Author:
Ing. Roldan D. Vargas G <rvargas@…>
Branches:
master
Children:
5de4c2a
Parents:
4cf8f21
Message:

se agrega aplicaciones para el control del captcha y para la visualización bootstrap del panel administrativo

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sicp/settings.py

    r1f0eaaf r350f0e7  
    4141    'django.contrib.messages',
    4242    'django.contrib.staticfiles',
     43    'captcha',
    4344    'apps.comun',
    4445    'apps.usuario',
     
    8586DATABASES = {
    8687    'default': {
    87         'ENGINE': 'django.db.backends.sqlite3',
    88         'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
     88        'ENGINE': 'django.db.backends.postgresql_psycopg2',
     89        'NAME': 'sicp',
     90        'USER': 'admin',
     91        'PASSWORD': '123456',
     92        'HOST': 'localhost',
     93        'PORT': '5432',
    8994    }
    9095}
     
    134139    'HEADER_TIME_FORMAT': 'h:i a',
    135140
     141    'LIST_PER_PAGE': 15,
    136142}
Note: See TracChangeset for help on using the changeset viewer.