4. Static Archives
{% load static %}import os # put this in the beginning of the file
# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/5.0/howto/static-files/
STATIC_URL = 'static/' #? the link where the static files are hosted
STATICFILES_DIRS = [
os.path.join(BASE_DIR, 'static')
]<title>Ecommerce Reserva</title>
<link rel="stylesheet" type="text/css" href="{% static 'css/main.css' %}">
Last updated