framework css cdn

This commit is contained in:
2025-06-26 11:52:19 -03:00
parent eaa7d42826
commit 52ccb7801b
4 changed files with 19 additions and 15 deletions

Binary file not shown.

View File

@@ -106,26 +106,26 @@ WSGI_APPLICATION = 'gestaoRaul.wsgi.application'
# Database # Database
# https://docs.djangoproject.com/en/5.1/ref/settings/#databases # https://docs.djangoproject.com/en/5.1/ref/settings/#databases
# DATABASES = {
# 'default': {
# 'ENGINE': 'django.db.backends.sqlite3',
# 'NAME': BASE_DIR / 'db.sqlite3',
# }
# }
DATABASES = { DATABASES = {
'default': { 'default': {
'ENGINE': DB_ENGINE, 'ENGINE': 'django.db.backends.sqlite3',
'NAME': DB_NAME, 'NAME': BASE_DIR / 'db.sqlite3',
'USER': DB_USER,
'PASSWORD': DB_PASSWORD,
'HOST': DB_HOST,
'PORT': DB_PORT,
} }
} }
# DATABASES = {
# 'default': {
# 'ENGINE': DB_ENGINE,
# 'NAME': DB_NAME,
# 'USER': DB_USER,
# 'PASSWORD': DB_PASSWORD,
# 'HOST': DB_HOST,
# 'PORT': DB_PORT,
# }
# }
# Password validation # Password validation
# https://docs.djangoproject.com/en/5.1/ref/settings/#auth-password-validators # https://docs.djangoproject.com/en/5.1/ref/settings/#auth-password-validators

View File

@@ -11,7 +11,11 @@
<link rel="shortcut icon" href="{% static 'midia/favicon/favicon.ico' %}" /> <link rel="shortcut icon" href="{% static 'midia/favicon/favicon.ico' %}" />
{% load pwa %} {% load pwa %}
{% progressive_web_app_meta %} {% progressive_web_app_meta %}
<link rel="stylesheet" href="{% static 'pico.css' %}"> <!-- <link rel="stylesheet" href="{% static 'pico.css' %}"> -->
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/@picocss/pico@2/css/pico.min.css"
>
<link rel="stylesheet" href="{% static 'base.css' %}"> <link rel="stylesheet" href="{% static 'base.css' %}">
{% block 'head' %} {% block 'head' %}