Changeset 3397a08 in firmaeventos for FirmaEventos


Ignore:
Timestamp:
Nov 20, 2017, 10:11:36 AM (7 years ago)
Author:
lhernandez <lhernandez@…>
Branches:
master
Children:
0138d11
Parents:
3996539
Message:

Realizando formulario para el registro de eventos

Location:
FirmaEventos
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • FirmaEventos/default.settings.py

    r3996539 r3397a08  
    4444
    4545PROJECT_APPS = [
    46     'utils',
     46    'base',
    4747    'users',
    4848    'eventos',
     
    6666#  Definir los Templates
    6767
    68 BASE_TEMPLATES = os.path.join(BASE_DIR, "templates")
    69 UTILS_TEMPLATES = os.path.join(BASE_DIR, "utils/templates")
    70 USERS_TEMPLATES = os.path.join(BASE_DIR, "users/templates")
    71 EVENTS_TEMPLATES = os.path.join(BASE_DIR, "eventos/templates")
    72 PARTIC_TEMPLATES = os.path.join(BASE_DIR, "participantes/templates")
    73 
    7468
    7569TEMPLATES = [
    7670    {
    7771        'BACKEND': 'django.template.backends.django.DjangoTemplates',
    78         'DIRS': [
    79                         BASE_TEMPLATES, UTILS_TEMPLATES,
    80                         USERS_TEMPLATES, EVENTS_TEMPLATES,
    81                         PARTIC_TEMPLATES
    82                     ],
     72        'DIRS': [],
    8373        'APP_DIRS': True,
    8474        'OPTIONS': {
  • FirmaEventos/urls.py

    r3996539 r3397a08  
    3939    url(r'^', include('base.urls', namespace="base")),
    4040    url(r'^', include('users.urls', namespace="users")),
     41    url(r'^', include('eventos.urls', namespace="events")),
    4142]
Note: See TracChangeset for help on using the changeset viewer.