Django Admin Site Broken

I HAVE A ERROR WITH DJANGO ADMIN SITE, IT’S LITERALLY BROKEN, I USE PYCHARM PROFESSIONAL EDITION OF WINDOWS.
AND AT THE MOMENT OF ENTERING THE ADMIN PAGE I GET LIKE THIS:

NEED HELP PLEASE.
AS I ADDED BEFORE I GOT THE ERROR INFORMATION IN THE CONSOLE THAT I COULD NOT FIND THE FILES CSS/BASE.CSS, CSS/RESPONSIVE.CSS AND SOME MORE, IN ADDITION TO NOT FIND THE fav.ico OR SOMETHING LIKE THAT.

Before we can help you, we need to learn a lot more about your project and what you’ve done to this point.

  • What versions of Django and Python are you using?

  • Is this a new project or an existing project?

    • If this is a new project, what have you done with this up to this point?
      • Did you start this project using the django-admin startproject command?
      • Is this the first project you’re trying to work with?
  • How are you running your project?

  • What does your settings.py file look like for the project?

What versions of Django and Python are you using?
R// I’m using Django 3.2.8, but when I run the server it launches with Django version 2.1.15.

Is it a new project or an existing project?
R// It is a new project which I am creating for my classes at the University.

If this is a new project, what have you done with it so far?
R// I have created a web application with bootstrap that goes well and has no errors of any kind until now that I tried to enter the site.admin

Did you start this project using the django-admin startproject command?
R// Not as such, Pycharm Professional is in charge of starting the entire project and already giving all the bases created.

Is this the first project you’re trying to work on?
R// Not really, but it’s the first project I’m trying to use the site.admin

What does your settings.py file look like for the project?
This:

"""
Django settings for CRUDDjango project.

Generated by 'django-admin startproject' using Django 4.1.7.

For more information on this file, see
https://docs.djangoproject.com/en/4.1/topics/settings/

For the full list of settings and their values, see
https://docs.djangoproject.com/en/4.1/ref/settings/
"""

from pathlib import Path

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


# Quick-start development settings - unsuitable for production
# See https://docs.djangoproject.com/en/4.1/howto/deployment/checklist/

# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = 'django-insecure-zi4n77+^z4neft)mx!mo)nwa2)74$cjr3%z%d-9(beqt3-p(6w'

# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True

ALLOWED_HOSTS = []


# Application definition

INSTALLED_APPS = [
    'django.contrib.admin',
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.messages',
    'django.contrib.staticfiles',
    'Mantenimiento',
]

MIDDLEWARE = [
    'django.middleware.security.SecurityMiddleware',
    'django.contrib.sessions.middleware.SessionMiddleware',
    'django.middleware.common.CommonMiddleware',
    'django.middleware.csrf.CsrfViewMiddleware',
    'django.contrib.auth.middleware.AuthenticationMiddleware',
    'django.contrib.messages.middleware.MessageMiddleware',
    'django.middleware.clickjacking.XFrameOptionsMiddleware',
]

ROOT_URLCONF = 'CRUDDjango.urls'

TEMPLATES = [
    {
        'BACKEND': 'django.template.backends.django.DjangoTemplates',
        'DIRS': [BASE_DIR / 'templates']
        ,
        'APP_DIRS': True,
        'OPTIONS': {
            'context_processors': [
                'django.template.context_processors.debug',
                'django.template.context_processors.request',
                'django.contrib.auth.context_processors.auth',
                'django.contrib.messages.context_processors.messages',
            ],
        },
    },
]

WSGI_APPLICATION = 'CRUDDjango.wsgi.application'


# Database
# https://docs.djangoproject.com/en/4.1/ref/settings/#databases

DATABASES = {
    'default': {
        'ENGINE': 'sql_server.pyodbc',
        'NAME': 'proyect_pv_crud',
        'USER': 'ADMIn',
        'PASSWORD': 'EVELYNROSADO2010',
        'HOST': 'DESKTOP-7LBUK4P',
        'PORT': '1433',
        'OPTIONS':
            {
                'driver': 'ODBC Driver 17 for SQL Server',
            },
    },
}
DATABASE_CONNECTION_POOLING = False

# Password validation
# https://docs.djangoproject.com/en/4.1/ref/settings/#auth-password-validators

AUTH_PASSWORD_VALIDATORS = [
    {
        'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
    },
    {
        'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
    },
    {
        'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
    },
    {
        'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
    },
]


# Internationalization
# https://docs.djangoproject.com/en/4.1/topics/i18n/

LANGUAGE_CODE = 'en-us'

TIME_ZONE = 'UTC'

USE_I18N = True

USE_TZ = True


# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/4.1/howto/static-files/

STATIC_URL = 'static/'

# Default primary key field type
# https://docs.djangoproject.com/en/4.1/ref/settings/#default-auto-field

DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField'

This is a error with console:

[04/Mar/2023 22:56:43] "GET / HTTP/1.1" 200 2130
[04/Mar/2023 22:56:48] "GET /admin/ HTTP/1.1" 200 4107
Not Found: /admin/static/admin/css/responsive.css
[04/Mar/2023 22:56:48] "GET /admin/static/admin/css/responsive.css HTTP/1.1" 404 4832
Not Found: /admin/static/admin/css/dashboard.css
[04/Mar/2023 22:56:48] "GET /admin/static/admin/css/dashboard.css HTTP/1.1" 404 4829
Not Found: /admin/static/admin/css/base.css
[04/Mar/2023 22:56:48] "GET /admin/static/admin/css/base.css HTTP/1.1" 404 4814

But the directory is this venv library root:

I’m going to say the first thing you need to do then is try to run your project directly from the command line.
I’m seeing three different answers above to my question about what version of Django you’re running - and you didn’t answer my question about the version of Python being used.

This information leads me to believe that there’s a pretty good chance that something’s not configured correctly with Pycharm, and you want to try and determine where the problem may actually be.

I’d suggest working directly from the command line with a new Python virtualenv that you create, and get a basic project working so that you know you’ve got a properly functional Python/Django installation. Once you know that you have a functional environment, then you can add Pycharm to that.

i’m use python 3.9.7

Also, I notice that the portion of the settings file shown here doesn’t include your STATICFILES_FINDERS setting.