Sunday, December 6, 2020

Re: files static error

My spanish is at a zero, but unless django started accepting lists for the STATIC_ROOT settings, thats where the errror lies

could somebody tell the author to remove the square braces from the STATIC_ROOT argument and also to rename the path to something else since django doesn't accept for the STATIC_ROOT path to be included in the STATICFILES_DIRS setting.

On Sunday, 6 December 2020 at 18:25:39 UTC+1 febr...@gmail.com wrote:
Hola,

tengo un error en el enrutamiento y no logro definir por que, la version de django es 3.1.* es como que si la ruta declarada no existiera, agradeceria mucho su ayuda

ARCHIVO SETTINGS.PY

from pathlib import Path

# Build paths inside the project like this: BASE_DIR / 'subdir'.
BASE_DIR = Path(__file__).resolve().parent.parent

INSTALLED_APPS = [
    'django.contrib.admin',
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.messages',
    'django.contrib.staticfiles',
'apps.adopcion',
'apps.mascota',
]
-----------------------------------------------------------------------------
.
.
.
-----------------------------------------------------------------------------

# STATIC_ROOT = [Path(BASE_DIR, 'static')]
STATIC_URL = '/static/'
STATICFILES_DIR = [Path(BASE_DIR, 'static'),]
FIN ARCHIVO
-----------------------------------------------------------------------------


 ARCHIVO HTML

{% load static%}

<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
{% block extrastatic %}

{%endblock%}
<link rel="stylesheet" type="text/css" href="{% static 'css/bootstrap.min' %}">
<link rel="stylesheet" type="text/css" href="{% static 'css/base.css' %}">

<title>{%block title %} documento {%endblock%}</title>
</head>


-----------------------------------------------------------------------------
diagrama de carpetas
-refugio
---apps
-----mascota
-----adopcion
---refugio
------settings.py
------+++++++++
---static
-------css
------------base.css
------------bootstrap.min.css
---template

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/b1208a92-de11-4013-9cff-32f64578348dn%40googlegroups.com.

No comments:

Post a Comment