Django is not collecting all my static files

I have 2folders containing my static files (admin, and assets). However, when i run python manage.py collectstatic, only the static files in the admin folder are collected.

Below is a code snippet for static files in settings.py

STATIC_URL = 'static/'

STATTICFILES_DIRS = [ BASE_DIR/ "asert" ]

STATIC_ROOT = (BASE_DIR/"asert/")

enter image description here

Below are some urls linking to the static files from an html page

<link rel="stylesheet" type="text/css" href="{% static 'assets/css/assets.css' %}">
<link rel="stylesheet" type="text/css" href="{% static 'assets/vendors/calendar/fullcalendar.css' %}">

<!-- TYPOGRAPHY ============================================= -->
<link rel="stylesheet" type="text/css" href="{% static 'assets/css/typography.css' %}">

<!-- SHORTCODES ============================================= -->
<link rel="stylesheet" type="text/css" href="{% static 'assets/css/shortcodes/shortcodes.css' %}">

<!-- STYLESHEETS ============================================= -->
<link rel="stylesheet" type="text/css" href="{% static 'assets/css/style.css' %}">
<link rel="stylesheet" type="text/css" href="{% static 'assets/css/dashboard.css' %}">
<link class="skin" rel="stylesheet" type="text/css" href="{% static 'assets/css/color/color-1.css' %}">
Back to Top