|
|
|
@ -1,5 +1,5 @@ |
|
|
|
""" |
|
|
|
Django settings for finanzas project. |
|
|
|
Django settings for reymota project. |
|
|
|
|
|
|
|
Generated by 'django-admin startproject' using Django 5.1. |
|
|
|
|
|
|
|
@ -54,7 +54,7 @@ MIDDLEWARE = [ |
|
|
|
'django.middleware.clickjacking.XFrameOptionsMiddleware', |
|
|
|
] |
|
|
|
|
|
|
|
ROOT_URLCONF = 'finanzas.urls' |
|
|
|
ROOT_URLCONF = 'reymota.urls' |
|
|
|
|
|
|
|
TEMPLATES = [ |
|
|
|
{ |
|
|
|
@ -69,15 +69,13 @@ TEMPLATES = [ |
|
|
|
'django.contrib.messages.context_processors.messages', |
|
|
|
], |
|
|
|
'libraries': { |
|
|
|
'filtros_de_entorno': 'finanzas.templatetags.filtros_de_entorno', |
|
|
|
'filtros_de_entorno': 'reymota.templatetags.filtros_de_entorno', |
|
|
|
} |
|
|
|
}, |
|
|
|
}, |
|
|
|
] |
|
|
|
|
|
|
|
print("Directorio de templates: ", TEMPLATES[0]['DIRS']) |
|
|
|
|
|
|
|
WSGI_APPLICATION = 'finanzas.wsgi.application' |
|
|
|
WSGI_APPLICATION = 'reymota.wsgi.application' |
|
|
|
|
|
|
|
|
|
|
|
# Database |
|
|
|
@ -128,7 +126,7 @@ THOUSAND_SEPARATOR = '.' |
|
|
|
# Static files (CSS, JavaScript, Images) |
|
|
|
# https://docs.djangoproject.com/en/5.1/howto/static-files/ |
|
|
|
|
|
|
|
STATIC_URL = 'static/' |
|
|
|
STATIC_URL = '/static/' |
|
|
|
STATIC_ROOT = BASE_DIR / "staticfiles" |
|
|
|
|
|
|
|
# Default primary key field type |
|
|
|
|