Categories

Saturday, April 27, 2024
#919814419350 therichposts@gmail.com
cssDjangoHtmlJavascriptPython

Create Animated Responsive Admin Dashboard Template using Django, Html, CSS and Charts

Create Animated Responsive Admin Dashboard Template using Django, Html, CSS and Charts

Hello guys how are you? Welcome back on my blog Therichpost. Today in this post I am going to share Create Animated Responsive Admin Dashboard Template using Django, Html, CSS and Charts.

Live Demo
Create Animated Responsive Admin Dashboard Template using Django, Html, CSS and Charts
Create Animated Responsive Admin Dashboard Template using Django, Html, CSS and Charts

Guys for more Django and Python stuff please click on them.

Guys here is the code snippet and please use carefully:

1. Guy’s very first we need to installed python latest version and I have installed latest python version. From below link please download the python latest version:

https://www.python.org/downloads/

2. Guys now we need to create one demo project folder and run below commands to create dummy Django project and run that project:

Django web project making : 

1. pip install django

2. python -m django startproject mysite

3. python manage.py startapp webapp 

4. python manage.py runserver

3. Guys now we need to create two folders name templates and static on project root like I mentioned in video.

4. Guys now we need to add below code inside mysite/settings.py to set the project files paths for media & assets:

"""
Django settings for mysite project.

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

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

For the full list of settings and their values, see
https://docs.djangoproject.com/en/4.2/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.2/howto/deployment/checklist/

# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = 'django-insecure-pr$e9($eg_pva9y8co%xno@m1vv-o7%#gdyhfe350wvv+$jtn%'

# 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',
    'webapp'
]

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 = 'mysite.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 = 'mysite.wsgi.application'


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

DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.sqlite3',
        'NAME': BASE_DIR / 'db.sqlite3',
    }
}


# Password validation
# https://docs.djangoproject.com/en/4.2/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.2/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.2/howto/static-files/

STATIC_URL = 'static/'
MEDIA_URL = 'images/'

STATICFILES_DIRS = [
    BASE_DIR / 'static'
]
STATIC_ROOT = BASE_DIR / 'staticfiles'
MEDIA_ROOT = BASE_DIR / 'images'

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

DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField'

5. Guys now we need to create file urls.py inside mysite folder and add below code inside it for project path&urls:

from django.contrib import admin
from django.urls import path, include
from django.conf.urls.static import static
from django.conf import settings
urlpatterns = [
    path('admin/', admin.site.urls),
    path('', include('webapp.urls'))
]
urlpatterns += static(settings.MEDIA_URL, document_root = settings.MEDIA_ROOT)
urlpatterns += static(settings.STATIC_URL, document_root = settings.STATIC_ROOT)

6. Guys now we need to create file base.html inside templates folder and add below code inside it for project html which will display on web:

<!DOCTYPE html>
<html lang="en">
  {% load static %}
<head>

    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <!-- PAGE TITLE HERE -->
    <title>Django Admin</title>
    
    
  <link rel="stylesheet" href="{% static 'assets/vendor/chartist/css/chartist.min.css' %}">
  <link href="{% static 'assets/vendor/bootstrap-select/dist/css/bootstrap-select.min.css' %}" rel="stylesheet">
  <link href="{% static 'assets/css/style.css' %}" rel="stylesheet">
  
</head>
<body>

      <!--**********************************
        Main wrapper start
    ***********************************-->
    <div id="main-wrapper">

    <!--**********************************
      Nav header start
    ***********************************-->
    <div class="nav-header">
      <a href="#" class="brand-logo">
        <i class="logo-abbr fa-brands fa-stumbleupon"></i>
      
    <h2 class="brand-title">Admin</h2>
      </a>
  
      <div class="nav-control">
        <div class="hamburger">
          <span class="line"></span><span class="line"></span><span class="line"></span>
        </div>
      </div>
    </div>
    <!--**********************************
      Nav header end
    ***********************************-->
  
  
  
  <!--**********************************
      Header start
    ***********************************-->
    <div class="header">
      <div class="header-content">
        <nav class="navbar navbar-expand">
          <div class="collapse navbar-collapse justify-content-between">
            <div class="header-left">
              <div class="dashboard_bar">
                Dashboard
              </div>
            </div>
            <ul class="navbar-nav header-right">
        <li class="nav-item">
        <div class="input-group search-area d-lg-inline-flex d-none">
          <div class="input-group-append">
          <span class="input-group-text"><a href="javascript:void(0)"><i class="flaticon-381-search-2"></i></a></span>
          </div>
          <input type="text" class="form-control" placeholder="Search here...">
        </div>
        </li>
        <li class="nav-item dropdown notification_dropdown">
                <a class="nav-link bell bell-link" href="javascript:void(0)">
                  <svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg">
          <path d="M2.23779 10.2492L4.66679 11.7064V8.30554L2.23779 10.2492Z" fill="#67636D"/>
          <path d="M1.1665 12.327V23.3334C1.16852 23.8531 1.28817 24.3656 1.5165 24.8325L9.20134 17.15L1.1665 12.327Z" fill="#67636D"/>
          <path d="M26.4832 24.8325C26.7115 24.3656 26.8311 23.8531 26.8332 23.3334V12.327L18.7983 17.15L26.4832 24.8325Z" fill="#67636D"/>
          <path d="M23.3335 8.30554V11.7064L25.7625 10.2492L23.3335 8.30554Z" fill="#67636D"/>
          <path d="M21.0492 13.0772C21.024 12.998 21.0076 12.9162 21.0002 12.8334V7.00004C21.0002 6.69062 20.8773 6.39388 20.6585 6.17508C20.4397 5.95629 20.1429 5.83337 19.8335 5.83337H8.16684C7.85742 5.83337 7.56067 5.95629 7.34188 6.17508C7.12309 6.39388 7.00017 6.69062 7.00017 7.00004V12.8334C6.99274 12.9162 6.97631 12.998 6.95117 13.0772L14.0002 17.3064L21.0492 13.0772Z" fill="#67636D"/>
          <path d="M17.3262 3.50003L14.7292 1.4222C14.5222 1.25653 14.2651 1.16626 14 1.16626C13.7349 1.16626 13.4777 1.25653 13.2708 1.4222L10.6738 3.50003H17.3262Z" fill="#67636D"/>
          <path d="M16.7358 18.3855L14.6008 19.6688C14.4194 19.7778 14.2117 19.8354 14 19.8354C13.7883 19.8354 13.5806 19.7778 13.3991 19.6688L11.2641 18.3855L3.16748 26.4833C3.63438 26.7117 4.14691 26.8313 4.66665 26.8333H23.3333C23.853 26.8313 24.3656 26.7117 24.8325 26.4833L16.7358 18.3855Z" fill="#67636D"/>
          </svg>
          <span class="badge light text-white bg-primary rounded-circle">6</span>
                </a>
        </li>
        <li class="nav-item dropdown notification_dropdown">
                <a class="nav-link  ai-icon" href="javascript:void(0)" role="button" data-bs-toggle="dropdown">
                  <svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg">
          <path d="M23.3333 19.8333H23.1187C23.2568 19.4597 23.3295 19.065 23.3333 18.6666V12.8333C23.3294 10.7663 22.6402 8.75902 21.3735 7.12565C20.1068 5.49228 18.3343 4.32508 16.3333 3.80679V3.49996C16.3333 2.88112 16.0875 2.28763 15.6499 1.85004C15.2123 1.41246 14.6188 1.16663 14 1.16663C13.3812 1.16663 12.7877 1.41246 12.3501 1.85004C11.9125 2.28763 11.6667 2.88112 11.6667 3.49996V3.80679C9.66574 4.32508 7.89317 5.49228 6.6265 7.12565C5.35983 8.75902 4.67058 10.7663 4.66667 12.8333V18.6666C4.67053 19.065 4.74316 19.4597 4.88133 19.8333H4.66667C4.35725 19.8333 4.0605 19.9562 3.84171 20.175C3.62292 20.3938 3.5 20.6905 3.5 21C3.5 21.3094 3.62292 21.6061 3.84171 21.8249C4.0605 22.0437 4.35725 22.1666 4.66667 22.1666H23.3333C23.6428 22.1666 23.9395 22.0437 24.1583 21.8249C24.3771 21.6061 24.5 21.3094 24.5 21C24.5 20.6905 24.3771 20.3938 24.1583 20.175C23.9395 19.9562 23.6428 19.8333 23.3333 19.8333Z" fill="#67636D"/>
          <path d="M9.98193 24.5C10.3863 25.2088 10.971 25.7981 11.6767 26.2079C12.3823 26.6178 13.1839 26.8337 13.9999 26.8337C14.816 26.8337 15.6175 26.6178 16.3232 26.2079C17.0289 25.7981 17.6136 25.2088 18.0179 24.5H9.98193Z" fill="#67636D"/>
          </svg>
          <span class="badge light text-white bg-primary rounded-circle">4</span>
                </a>
                <div class="dropdown-menu dropdown-menu-end">
                  <div id="dlab_W_Notification1" class="widget-media dz-scroll p-3 height380">
          <ul class="timeline">
            <li>
            <div class="timeline-panel">
              <div class="media me-2">
              <img alt="image" width="50" src="{% static 'assets/img/man (1).png' %}">
              </div>
              <div class="media-body">
              <h6 class="mb-1">Dr sultads Send you Photo</h6>
              <small class="d-block">29 July 2020 - 02:26 PM</small>
              </div>
            </div>
            </li>
            <li>
            <div class="timeline-panel">
              <div class="media me-2 media-info">
              KG
              </div>
              <div class="media-body">
              <h6 class="mb-1">Resport created successfully</h6>
              <small class="d-block">29 July 2020 - 02:26 PM</small>
              </div>
            </div>
            </li>
            <li>
            <div class="timeline-panel">
              <div class="media me-2 media-success">
              <i class="fa fa-home"></i>
              </div>
              <div class="media-body">
              <h6 class="mb-1">Reminder : Treatment Time!</h6>
              <small class="d-block">29 July 2020 - 02:26 PM</small>
              </div>
            </div>
            </li>
             <li>
            <div class="timeline-panel">
              <div class="media me-2">
              <img alt="image" width="50" src="{% static 'assets/img/man (1).png' %}">
              </div>
              <div class="media-body">
              <h6 class="mb-1">Dr sultads Send you Photo</h6>
              <small class="d-block">29 July 2020 - 02:26 PM</small>
              </div>
            </div>
            </li>
            <li>
            <div class="timeline-panel">
              <div class="media me-2 media-danger">
              KG
              </div>
              <div class="media-body">
              <h6 class="mb-1">Resport created successfully</h6>
              <small class="d-block">29 July 2020 - 02:26 PM</small>
              </div>
            </div>
            </li>
            <li>
            <div class="timeline-panel">
              <div class="media me-2 media-primary">
              <i class="fa fa-home"></i>
              </div>
              <div class="media-body">
              <h6 class="mb-1">Reminder : Treatment Time!</h6>
              <small class="d-block">29 July 2020 - 02:26 PM</small>
              </div>
            </div>
            </li>
          </ul>
          </div>
                  <a class="all-notification" href="javascript:void(0)">See all notifications <i class="ti-arrow-right"></i></a>
                </div>
              </li>
              <li class="nav-item dropdown header-profile">
                <a class="nav-link" href="javascript:void(0);" role="button" data-bs-toggle="dropdown">
                  <img src="{% static 'assets/img/man (1).png' %}" width="20" alt=""/>
          <div class="header-info">
          <span>Johndoe</span>
          <small>Super Admin</small>
          </div>
                </a>
                <div class="dropdown-menu dropdown-menu-end">
                  <a href="#" class="dropdown-item ai-icon">
                    <svg id="icon-user1" xmlns="http://www.w3.org/2000/svg" class="text-primary" width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"></path><circle cx="12" cy="7" r="4"></circle></svg>
                    <span class="ms-2">Profile </span>
                  </a>
                  <a href="#" class="dropdown-item ai-icon">
                    <svg id="icon-inbox" xmlns="http://www.w3.org/2000/svg" class="text-success" width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z"></path><polyline points="22,6 12,13 2,6"></polyline></svg>
                    <span class="ms-2">Inbox </span>
                  </a>
                  <a href="#" class="dropdown-item ai-icon">
                    <svg id="icon-logout" xmlns="http://www.w3.org/2000/svg" class="text-danger" width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4"></path><polyline points="16 17 21 12 16 7"></polyline><line x1="21" y1="12" x2="9" y2="12"></line></svg>
                    <span class="ms-2">Logout </span>
                  </a>
                </div>
              </li>
            </ul>
          </div>
        </nav>
      </div>
    </div>
    <!--**********************************
      Header end ti-comment-alt
    ***********************************-->
  
    <!--**********************************
      Sidebar start
    ***********************************-->
    <div class="deznav">
      <div class="deznav-scroll">
    <a class="add-project-sidebar btn btn-primary" href="javascript:void(0)"  data-bs-toggle="modal" data-bs-target="#addProjectSidebar" >+ New Project</a>
    <ul class="metismenu" id="menu">
          <li><a href="#">
        <i class="flaticon-layout"></i>
        <span class="nav-text">Dashboard</span>
      </a>
  
          </li>
          <li><a  href="#">
      <i class="flaticon-monitor"></i>
        <span class="nav-text">Apps</span>
      </a>
          </li>
          <li><a  href="#">
        <i class="flaticon-bar-chart-1"></i>
        <span class="nav-text">Charts</span>
      </a>
          </li>
          <li><a  href="#">
        <i class="flaticon-web"></i>
        <span class="nav-text">Bootstrap</span>
      </a>
          </li>
          <li><a  href="#">
        <i class="flaticon-plugin"></i>
        <span class="nav-text">Plugins</span>
      </a>
          </li>
          <li><a href="#">
        <i class="flaticon-admin"></i>
        <span class="nav-text">Widget</span>
      </a>
      </li>
          <li><a  href="#">
        <i class="flaticon-contract"></i>
        <span class="nav-text">Forms</span>
      </a>
          </li>
          <li><a  href="#">
        <i class="flaticon-table"></i>
        <span class="nav-text">Table</span>
      </a>
          </li>
          <li><a  href="#">
        <i class="flaticon-newsletter"></i>
        <span class="nav-text">Pages</span>
      </a>
          </li>
        </ul>
    </div>
    </div>
    <!--**********************************
      Sidebar end
    ***********************************-->
  
  <!--**********************************
      Content body start
    ***********************************-->
    <div class="content-body">
    <div class="container-fluid">
    <!-- Add Project -->
    <div class="modal fade" id="addProjectSidebar">
      <div class="modal-dialog" role="document">
      <div class="modal-content">
        <div class="modal-header">
        <h5 class="modal-title">Create Project</h5>
        <button type="button" class="btn-close" data-bs-dismiss="modal"></button>
        </div>
        <div class="modal-body">
        <form>
          <div class="form-group">
          <label class="text-black font-w500">Project Name</label>
          <input type="text" class="form-control">
          </div>
          <div class="form-group">
            <label class="text-black font-w500">Dadeline</label>
            <div class="cal-icon"><input type="date" class="form-control"><i class="far fa-calendar-alt"></i></div>
            </div>
          <div class="form-group">
          <label class="text-black font-w500">Client Name</label>
          <input type="text" class="form-control">
          </div>
          <div class="form-group">
          <button type="button" class="btn btn-primary">CREATE</button>
          </div>
        </form>
        </div>
      </div>
      </div>
    </div>
    <div class="row">
      <div class="col-xl-3 col-xxl-3 col-lg-6 col-sm-6">
      <div class="card card-bd">
        <div class="bg-secondary card-border" style="background:#3444d5 !important;"></div>
        <div class="card-body box-style">
        <div class="media align-items-center">
          <div class="media-body me-3">
          <h2 class="count num-text text-black font-w700">78</h2>
          <span class="fs-14">Total Project Handled</span>
          </div>
          <svg width="36" height="36" viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg">
          <path d="M34.422 13.9831C34.3341 13.721 34.1756 13.4884 33.9638 13.3108C33.7521 13.1332 33.4954 13.0175 33.222 12.9766L23.649 11.5141L19.353 2.36408C19.2319 2.10638 19.0399 1.88849 18.7995 1.73587C18.5591 1.58325 18.2803 1.5022 17.9955 1.5022C17.7108 1.5022 17.4319 1.58325 17.1915 1.73587C16.9511 1.88849 16.7592 2.10638 16.638 2.36408L12.342 11.5141L2.76902 12.9766C2.49635 13.0181 2.24042 13.1341 2.02937 13.3117C1.81831 13.4892 1.6603 13.7215 1.57271 13.9831C1.48511 14.2446 1.47133 14.5253 1.53287 14.7941C1.59441 15.063 1.72889 15.3097 1.92152 15.5071L8.89802 22.6501L7.24802 32.7571C7.20299 33.0345 7.23679 33.3189 7.34555 33.578C7.45431 33.8371 7.63367 34.0605 7.86319 34.2226C8.09271 34.3847 8.36315 34.4791 8.64371 34.495C8.92426 34.5109 9.20365 34.4477 9.45002 34.3126L18 29.5906L26.55 34.3126C26.7964 34.4489 27.0761 34.5131 27.3573 34.4978C27.6384 34.4826 27.9096 34.3885 28.1398 34.2264C28.37 34.0643 28.5499 33.8406 28.659 33.5811C28.768 33.3215 28.8018 33.0365 28.7565 32.7586L27.1065 22.6516L34.0785 15.5071C34.2703 15.3091 34.4037 15.0622 34.4643 14.7933C34.5249 14.5245 34.5103 14.2441 34.422 13.9831Z" fill="#864AD1"/>
          </svg>
        </div>
        </div>
      </div>
      </div>
      <div class="col-xl-3 col-xxl-3 col-lg-6 col-sm-6">
      <div class="card card-bd">
      <div class="bg-warning card-border"></div>
        <div class="card-body box-style">
        <div class="media align-items-center">
          <div class="media-body me-3">
          <h2 class="count num-text text-black font-w700">214</h2>
          <span class="fs-14">Contacts You Have</span>
          </div>
          <svg width="36" height="36" viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg">
          <path d="M17.8935 22.5C23.6925 22.5 28.3935 17.799 28.3935 12C28.3935 6.20101 23.6925 1.5 17.8935 1.5C12.0945 1.5 7.39351 6.20101 7.39351 12C7.39351 17.799 12.0945 22.5 17.8935 22.5Z" fill="#FFB930"/>
          <path d="M29.5605 21.3344C29.217 20.9909 28.851 20.6699 28.476 20.3564C27.2159 21.96 25.6078 23.2562 23.7733 24.1472C21.9388 25.0382 19.9259 25.5007 17.8864 25.4996C15.847 25.4986 13.8345 25.0342 12.0009 24.1414C10.1673 23.2486 8.56051 21.9507 7.30199 20.3459C5.447 21.8906 3.95577 23.8256 2.9347 26.013C1.91364 28.2003 1.3879 30.586 1.39499 32.9999C1.39499 33.3978 1.55303 33.7793 1.83433 34.0606C2.11564 34.3419 2.49717 34.4999 2.89499 34.4999H32.895C33.2928 34.4999 33.6743 34.3419 33.9557 34.0606C34.237 33.7793 34.395 33.3978 34.395 32.9999C34.4004 30.8324 33.9759 28.6854 33.146 26.683C32.3162 24.6807 31.0975 22.8627 29.5605 21.3344Z" fill="#FFB930"/>
          </svg>
        </div>
        </div>
      </div>
      </div>
      <div class="col-xl-3 col-xxl-3 col-lg-6 col-sm-6">
      <div class="card card-bd">
      <div class="bg-primary card-border"></div>
        <div class="card-body box-style">
        <div class="media align-items-center">
          <div class="media-body me-3">
          <h2 class="count num-text text-black font-w700">93</h2>
          <span class="fs-14">Total Unfinished Task</span>
          </div>
          <svg class="primary-icon" width="36" height="36" viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg">
          <path d="M11.9999 1.5H5.99994C3.51466 1.5 1.49994 3.51472 1.49994 6V29.8125C1.49994 32.2977 3.51466 34.3125 5.99994 34.3125H11.9999C14.4852 34.3125 16.4999 32.2977 16.4999 29.8125V6C16.4999 3.51472 14.4852 1.5 11.9999 1.5Z" fill="#20F174"/>
          <path d="M30 1.5H24C21.5147 1.5 19.5 3.51472 19.5 6V12C19.5 14.4853 21.5147 16.5 24 16.5H30C32.4853 16.5 34.5 14.4853 34.5 12V6C34.5 3.51472 32.4853 1.5 30 1.5Z" fill="#20F174"/>
          <path d="M30 19.5H24C21.5147 19.5 19.5 21.5147 19.5 24V30C19.5 32.4853 21.5147 34.5 24 34.5H30C32.4853 34.5 34.5 32.4853 34.5 30V24C34.5 21.5147 32.4853 19.5 30 19.5Z" fill="#20F174"/>
          </svg>
        </div>
        </div>
      </div>
      </div>
      <div class="col-xl-3 col-xxl-3 col-lg-6 col-sm-6">
      <div class="card card-bd">
        <div class="bg-info card-border"></div>
        <div class="card-body box-style">
        <div class="media align-items-center">
          <div class="media-body me-3">
          <h2 class="count num-text text-black font-w700">12</h2>
          <span class="fs-14">Unread Messages</span>
          </div>
          <svg width="46" height="46" viewBox="0 0 46 46" fill="none" xmlns="http://www.w3.org/2000/svg">
          <path d="M34.4999 1.91663H11.4999C8.95917 1.91967 6.52338 2.93032 4.72682 4.72688C2.93026 6.52345 1.91961 8.95924 1.91656 11.5V26.8333C1.91935 29.0417 2.6834 31.1816 4.07994 32.8924C5.47648 34.6031 7.42011 35.7801 9.58323 36.225V42.1666C9.58318 42.5136 9.67733 42.8541 9.85564 43.1518C10.0339 43.4495 10.2897 43.6932 10.5957 43.8569C10.9016 44.0206 11.2463 44.0982 11.5929 44.0813C11.9395 44.0645 12.275 43.9539 12.5636 43.7613L23.5749 36.4166H34.4999C37.0406 36.4136 39.4764 35.4029 41.273 33.6064C43.0695 31.8098 44.0802 29.374 44.0832 26.8333V11.5C44.0802 8.95924 43.0695 6.52345 41.273 4.72688C39.4764 2.93032 37.0406 1.91967 34.4999 1.91663ZM30.6666 24.9166H15.3332C14.8249 24.9166 14.3374 24.7147 13.9779 24.3552C13.6185 23.9958 13.4166 23.5083 13.4166 23C13.4166 22.4916 13.6185 22.0041 13.9779 21.6447C14.3374 21.2852 14.8249 21.0833 15.3332 21.0833H30.6666C31.1749 21.0833 31.6624 21.2852 32.0219 21.6447C32.3813 22.0041 32.5832 22.4916 32.5832 23C32.5832 23.5083 32.3813 23.9958 32.0219 24.3552C31.6624 24.7147 31.1749 24.9166 30.6666 24.9166ZM34.4999 17.25H11.4999C10.9916 17.25 10.5041 17.048 10.1446 16.6886C9.78517 16.3291 9.58323 15.8416 9.58323 15.3333C9.58323 14.825 9.78517 14.3374 10.1446 13.978C10.5041 13.6186 10.9916 13.4166 11.4999 13.4166H34.4999C35.0082 13.4166 35.4957 13.6186 35.8552 13.978C36.2146 14.3374 36.4166 14.825 36.4166 15.3333C36.4166 15.8416 36.2146 16.3291 35.8552 16.6886C35.4957 17.048 35.0082 17.25 34.4999 17.25Z" fill="#3ECDFF"/>
          </svg>
        </div>
        </div>
      </div>
      </div>
    </div>
    <div class="row">
      <div class="col-xl-6 col-xxl-12">
      <div class="card">
        <div class="card-header d-block border-0 pb-0">
        <div class="d-flex justify-content-between pb-3">
          <h4 class="mb-0 text-black fs-20">Project Created</h4>
          <div class="dropdown">
          <a href="javascript:void(0)" data-bs-toggle="dropdown" aria-expanded="false">
            <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
            <path d="M12 13C12.5523 13 13 12.5523 13 12C13 11.4477 12.5523 11 12 11C11.4477 11 11 11.4477 11 12C11 12.5523 11.4477 13 12 13Z" stroke="#575757" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
            <path d="M12 6C12.5523 6 13 5.55228 13 5C13 4.44772 12.5523 4 12 4C11.4477 4 11 4.44772 11 5C11 5.55228 11.4477 6 12 6Z" stroke="#575757" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
            <path d="M12 20C12.5523 20 13 19.5523 13 19C13 18.4477 12.5523 18 12 18C11.4477 18 11 18.4477 11 19C11 19.5523 11.4477 20 12 20Z" stroke="#575757" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
            </svg>
          </a>
          <div class="dropdown-menu dropdown-menu-left">
            <a class="dropdown-item" href="javascript:void(0);">Edit</a>
            <a class="dropdown-item" href="javascript:void(0);">Delete</a>
          </div>
          </div>
        </div>
        <div class="d-flex align-items-center">
          <span class="fs-36 text-black font-w600 me-4">25%</span>
          <div>
          <svg class="me-2" width="27" height="14" viewBox="0 0 27 14" fill="none" xmlns="http://www.w3.org/2000/svg">
            <path d="M0 13.435L13.435 0L26.8701 13.435H0Z" fill="#fc5130"></path>
          </svg>
          <span>last month $563,443</span>
          </div>
        </div>
        </div>
        <div class="card-body pb-0 px-2 pt-2">
        <div id="chartTimeline" class="timeline-chart"></div>
        </div>
      </div>    
      </div>
      <div class="col-xl-3 col-xxl-6 col-sm-6">
      <div class="card">  
        <div class="card-header border-0 pb-0">
        <h4 class="fs-20 mb-0 text-black">New Clients</h4>
        <div class="dropdown">
          <a href="javascript:void(0)" data-bs-toggle="dropdown" aria-expanded="false">
          <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
            <path d="M12 13C12.5523 13 13 12.5523 13 12C13 11.4477 12.5523 11 12 11C11.4477 11 11 11.4477 11 12C11 12.5523 11.4477 13 12 13Z" stroke="#575757" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
            <path d="M12 6C12.5523 6 13 5.55228 13 5C13 4.44772 12.5523 4 12 4C11.4477 4 11 4.44772 11 5C11 5.55228 11.4477 6 12 6Z" stroke="#575757" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
            <path d="M12 20C12.5523 20 13 19.5523 13 19C13 18.4477 12.5523 18 12 18C11.4477 18 11 18.4477 11 19C11 19.5523 11.4477 20 12 20Z" stroke="#575757" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
          </svg>
          </a>
          <div class="dropdown-menu dropdown-menu-left">
          <a class="dropdown-item" href="javascript:void(0);">Edit</a>
          <a class="dropdown-item" href="javascript:void(0);">Delete</a>
          </div>
        </div>
        </div>
        <div class="card-body text-center pb-0 px-2 pt-2">
        <div id="widgetChart1" class="widgetChart1 dashboard-chart"></div>
        </div>
      </div>
      </div>    
      <div class="col-xl-3 col-xxl-6 col-sm-6">
      <div class="card">  
        <div class="card-header border-0 pb-0">
        <h4 class="fs-20 mb-0 text-black">Monthly Target</h4>
        <div class="dropdown">
          <a href="javascript:void(0)" data-bs-toggle="dropdown" aria-expanded="false">
          <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
            <path d="M12 13C12.5523 13 13 12.5523 13 12C13 11.4477 12.5523 11 12 11C11.4477 11 11 11.4477 11 12C11 12.5523 11.4477 13 12 13Z" stroke="#575757" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
            <path d="M12 6C12.5523 6 13 5.55228 13 5C13 4.44772 12.5523 4 12 4C11.4477 4 11 4.44772 11 5C11 5.55228 11.4477 6 12 6Z" stroke="#575757" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
            <path d="M12 20C12.5523 20 13 19.5523 13 19C13 18.4477 12.5523 18 12 18C11.4477 18 11 18.4477 11 19C11 19.5523 11.4477 20 12 20Z" stroke="#575757" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
          </svg>
          </a>
          <div class="dropdown-menu dropdown-menu-left">
          <a class="dropdown-item" href="javascript:void(0);">Edit</a>
          <a class="dropdown-item" href="javascript:void(0);">Delete</a>
          </div>
        </div>
        </div>
        <div class="card-body text-center pt-0">
        <div id="radialChart" class="monthly-project-chart"></div>
        <span class="fs-14 text-black d-block op5">100 Projects/ monthy</span>
        </div>
      </div>
      </div>
    </div>  
    <div class="row">
      <div class="col-xl-6 col-xxl-12">
      <div class="row">
        
        <div class="col-sm-6">
        <div class="card">  
          <div class="card-header border-0">
          <h4 class="fs-16 text-black font-w500">Project Released</h4>
          <div class="d-flex align-items-center">
            <svg width="14" height="8" viewBox="0 0 14 8" fill="none" xmlns="http://www.w3.org/2000/svg">
            <path d="M1.90735e-06 0.499999L7 7.5L14 0.5" fill="#FF6746"/>
            </svg>
            <span class="fs-28 font-w600 ms-2 text-black">4%</span>
          </div>
          </div>
          <div class="card-body text-center pb-0 p-0">
          <div id="widgetChart2" class="dashboard-chart"></div>
          </div>
        </div>
        </div>
        <div class="col-sm-6">
        <div class="card">
          <div class="card-body text-center d-flex align-items-center justify-content-between">
          <div class="d-inline-block position-relative donut-chart-sale">
            <span class="donut1" data-peity='{ "fill": ["#fc5130", "rgba(241, 241, 241,1)"],   "innerRadius": 33, "radius": 10}'>3/8</span>
            <small class="text-primary">29%</small>
          </div>
          <div>
            <h2 class="fs-28 font-w600 mb-0 text-end text-black">567</h2>
            <p class="mb-0 fs-14 font-w400 text-black">Contacts Added</p>
          </div>
          </div>
        </div>
        </div>
        <div class="col-xl-12">
        <div class="card overflow-hidden">
          <div class="card-body">
          <div class="text-center">
            <div class="profile-photo">
            <img src="{% static 'assets/img/man.png' %}" width="100" class="img-fluid rounded-circle" alt="">
            </div>
            <h3 class="mt-4 mb-1">Therichpost</h3>
            <p class="text-muted">Youtuber</p>
            <a class="btn btn-outline-primary btn-rounded mt-3 px-5" href="javascript:void(0)">Folllow</a>
          </div>
          </div>
          
          <div class="card-footer pt-0 pb-0 text-center">
          <div class="row">
            <div class="col-4 pt-3 pb-3 border-right">
            <h3 class="mb-1">150</h3><span>Follower</span>
            </div>
            <div class="col-4 pt-3 pb-3 border-right">
            <h3 class="mb-1">140</h3><span>Place Stay</span>
            </div>
            <div class="col-4 pt-3 pb-3">
            <h3 class="mb-1">45</h3><span>Reviews</span>
            </div>
          </div>
          </div>
        </div>
        </div>
        <div class="col-xl-12">
        <div class="card message-bx">
          <div class="card-header border-0 d-sm-flex d-block pb-0">
          <div>
            <h4 class="fs-20 mb-0  text-black mb-sm-0 mb-2">Recent Messages</h4>
          </div>
          <a href="#" class="btn btn-primary shadow-primary btn-rounded text-white">+ New Message</a>
          </div>
          <div class="card-body">
          <div class="media mb-3 pb-3 border-bottom">
            <div class="image-bx me-sm-4 me-2">
            <img src="{% static 'assets/img/hacker.png' %}" alt="" class="rounded-circle img-1">
            <span class="active"></span>
            </div>
            <div class="media-body d-sm-flex justify-content-between d-block align-items-center">
            <div class="me-sm-3 me-0">
              <h6 class="fs-16 font-w600 mb-sm-2 mb-0"><a href="#" class="text-black">Laura Chyan</a></h6>
              <p class="text-black mb-1">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut</p>
              <span class="fs-14">5m ago</span>
            </div>
            </div>
          </div>
          <div class="media mb-3 pb-3 border-bottom">
            <div class="image-bx me-sm-4 me-2">
            <img src="{% static 'assets/img/gamer.png' %}" alt="" class="rounded-circle img-1">
            </div>
            <div class="media-body d-sm-flex justify-content-between d-block align-items-center">
            <div class="me-sm-3 me-0">
              <h6 class="fs-16 font-w600 mb-sm-2 mb-0"><a href="#" class="text-black">Olivia Rellaq</a></h6>
              <p class="text-black mb-1">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut</p>
              <span class="fs-14">41m ago</span>
            </div>
            </div>
          </div>
          <div class="media">
            <div class="image-bx me-sm-4 me-2">
            <img src="{% static 'assets/img/man (1).png' %}" alt="" class="rounded-circle img-1">
            <span class="active"></span>
            </div>
            <div class="media-body d-sm-flex justify-content-between d-block align-items-center">
            <div class="me-sm-3 me-0">
              <h6 class="fs-16 font-w600 mb-sm-2 mb-0"><a href="#" class="text-black">Keanu Tipes</a></h6>
              <p class="text-black mb-1">Nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum...</p>
              <span class="fs-14">25m ago</span>
            </div>
            </div>
          </div>
          </div>
        </div>
        </div>
      </div>
      </div>
      <div class="col-xl-6 col-xxl-12">
      <div class="row">
        <div class="col-md-6">
        <div class="card">
          <div class="card-header border-0 pb-0">
          <div class="me-2">
            <h4 class="fs-20 mb-0 font-w500 text-black">Upcoming Projects</h4>
          </div>
          </div>
          <div class="card-body">
          <div class="border-bottom up-project-bx pb-4 mb-4">
            <span class="fs-16 text-primary mb-2 d-block sub-title font-w500">Yoast Esac</span>
            <div class="d-flex">
            <p class="font-w500 me-auto mb-2 title fs-20"><a href="#" class="text-black">Redesign Kripton Mobile App</a></p>
            <div class="dropdown mb-3">
              <a href="javascript:void(0)" data-bs-toggle="dropdown" aria-expanded="false">
              <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
                <path d="M12 13C12.5523 13 13 12.5523 13 12C13 11.4477 12.5523 11 12 11C11.4477 11 11 11.4477 11 12C11 12.5523 11.4477 13 12 13Z" stroke="#575757" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
                <path d="M12 6C12.5523 6 13 5.55228 13 5C13 4.44772 12.5523 4 12 4C11.4477 4 11 4.44772 11 5C11 5.55228 11.4477 6 12 6Z" stroke="#575757" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
                <path d="M12 20C12.5523 20 13 19.5523 13 19C13 18.4477 12.5523 18 12 18C11.4477 18 11 18.4477 11 19C11 19.5523 11.4477 20 12 20Z" stroke="#575757" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
              </svg>
              </a>
              <div class="dropdown-menu dropdown-menu-left">
              <a class="dropdown-item" href="javascript:void(0);">Edit</a>
              <a class="dropdown-item" href="javascript:void(0);">Delete</a>
              </div>
            </div>
            </div>
            <div class="mb-3"><i class="far fa-calendar me-3" aria-hidden="true"></i>Created on Sep 8th, 2020</div>
            <div class="media align-items-center">
            <div class="power-ic me-3">
              <i class="fa fa-bolt" aria-hidden="true"></i>
            </div>
            <div class="media-body">
              <p class="mb-1">Deadline</p>
              <span class="text-black font-w600">Tuesday,  Sep 29th 2020</span>
            </div>
            </div>
          </div>
          <div class="border-bottom up-project-bx pb-4 mb-4">
            <span class="fs-16 text-primary mb-2 d-block sub-title font-w500">Yoast Esac</span>
            <div class="d-flex">
            <p class="font-w500 me-auto title mb-2 fs-20"><a href="#" class="text-black">Build Branding Persona for Etza.id</a></p>
            <div class="dropdown mb-3">
              <a href="javascript:void(0)" data-bs-toggle="dropdown" aria-expanded="false">
              <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
                <path d="M12 13C12.5523 13 13 12.5523 13 12C13 11.4477 12.5523 11 12 11C11.4477 11 11 11.4477 11 12C11 12.5523 11.4477 13 12 13Z" stroke="#575757" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
                <path d="M12 6C12.5523 6 13 5.55228 13 5C13 4.44772 12.5523 4 12 4C11.4477 4 11 4.44772 11 5C11 5.55228 11.4477 6 12 6Z" stroke="#575757" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
                <path d="M12 20C12.5523 20 13 19.5523 13 19C13 18.4477 12.5523 18 12 18C11.4477 18 11 18.4477 11 19C11 19.5523 11.4477 20 12 20Z" stroke="#575757" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
              </svg>
              </a>
              <div class="dropdown-menu dropdown-menu-left">
              <a class="dropdown-item" href="javascript:void(0);">Edit</a>
              <a class="dropdown-item" href="javascript:void(0);">Delete</a>
              </div>
            </div>
            </div>
            <div class="mb-3"><i class="far fa-calendar me-3" aria-hidden="true"></i>Created on Sep 8th, 2020</div>
            <div class="media align-items-center">
            <div class="power-ic me-3">
              <i class="fa fa-bolt" aria-hidden="true"></i>
            </div>
            <div class="media-body">
              <p class="mb-1">Deadline</p>
              <span class="text-black font-w600">Tuesday,  Sep 29th 2020</span>
            </div>
            </div>
          </div>
          <div class="up-project-bx">
            <span class="fs-16 text-primary sub-title mb-2 d-block font-w500">Yoast Esac</span>
            <div class="d-flex">
            <p class="font-w500 me-auto title mb-2 fs-20"><a href="#" class="text-black">Manage SEO for Eclan Company Profile</a></p>
            <div class="dropdown mb-3">
              <a href="javascript:void(0)" data-bs-toggle="dropdown" aria-expanded="false">
              <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
                <path d="M12 13C12.5523 13 13 12.5523 13 12C13 11.4477 12.5523 11 12 11C11.4477 11 11 11.4477 11 12C11 12.5523 11.4477 13 12 13Z" stroke="#575757" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
                <path d="M12 6C12.5523 6 13 5.55228 13 5C13 4.44772 12.5523 4 12 4C11.4477 4 11 4.44772 11 5C11 5.55228 11.4477 6 12   6Z" stroke="#575757" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
                <path d="M12 20C12.5523 20 13 19.5523 13 19C13 18.4477 12.5523 18 12 18C11.4477 18 11 18.4477 11 19C11 19.5523 11.4477 20 12 20Z" stroke="#575757" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
              </svg>
              </a>
              <div class="dropdown-menu dropdown-menu-left">
              <a class="dropdown-item" href="javascript:void(0);">Edit</a>
              <a class="dropdown-item" href="javascript:void(0);">Delete</a>
              </div>
            </div>
            </div>
            <div class="mb-3"><i class="far fa-calendar me-3" aria-hidden="true"></i>Created on Sep 8th, 2020</div>
            <div class="media align-items-center">
            <div class="power-ic me-3">
              <i class="fa fa-bolt" aria-hidden="true"></i>
            </div>
            <div class="media-body">
              <p class="mb-1">Deadline</p>
              <span class="text-black font-w600">Tuesday,  Sep 29th 2020</span>
            </div>
            </div>
          </div>
          </div>
        </div>
        </div>
        <div class="col-md-6">
        <div class="card kanbanPreview-bx">
          <div class="card-body">
          <div class="sub-card bg-secondary d-flex text-white">
            <div class="me-auto pe-2">
            <h4 class="fs-20 mb-0 font-w600 text-white">Quick To-Do List</h4>
            <span class="fs-14 op6 font-w200">Lorem ipsum dolor sit amet</span>
            </div>
            <a href="#" class="plus-icon"><i class="fa fa-plus" aria-hidden="true"></i></a>
          </div>
          <div class="sub-card">
            <span class="text-warning sub-title fs-14">Graphic Deisgner</span>
            <p class="font-w500"><a href="#" class="text-black">Visual Graphic for Presentation to Client</a></p>
            <div class="row justify-content-between align-items-center">
            <div class="col-6">
              <span>Aug 4, 2021</span>
            </div>
            <ul class="users col-6">
              <li><img src="{% static 'assets/img/man (1).png' %}" alt=""></li>
              <li><img src="https://cdn-icons-png.flaticon.com/512/921/921071.png"></li>
              <li><img src="https://cdn-icons-png.flaticon.com/512/921/921071.png"></li>
              <li><img src="https://cdn-icons-png.flaticon.com/512/1154/1154448.png" alt=""></li>
            </ul>
            
            </div>
          </div>
          <div class="sub-card">
            <span class="text-primary sub-title fs-14">Database Engineer</span>
            <p class="font-w500"><a href="#" class="text-black">Build Database Design for Fasto Admin v2</a></p>
            <div class="row justify-content-between align-items-center">
            <div class="col-6">
              <span>Aug 4, 2021</span>
            </div>
            <ul class="users col-6">
              <li><img src="{% static 'assets/img/man (1).png' %}" alt=""></li>
              <li><img src="https://cdn-icons-png.flaticon.com/512/921/921071.png"></li>
              <li><img src="{% static 'assets/img/man (1).png' %}" alt=""></li>
            </ul>
            </div>
          </div>
          <div class="sub-card">
            <span class="text-secondary sub-title fs-14">Digital Marketing</span>
            <p class="font-w500"><a href="#" class="text-black">Make Promotional Ads for Instagram Fasto’s</a></p>
            <div class="row justify-content-between align-items-center mb-4">
            <div class="col-6">
              <span>Aug 4, 2021</span>
            </div>
            <ul class="users col-6">
              <li><img src="{% static 'assets/img/man (1).png' %}" alt=""></li>
              <li><img src="https://cdn-icons-png.flaticon.com/512/921/921071.png"></li>
              <li><img src="{% static 'assets/img/man (1).png' %}" alt=""></li>
            </ul>
            </div>
            <span><i class="far fa-comment me-2"></i>2 Comment</span>
          </div>
          </div>
        </div>
        </div>
        <div class="col-md-6">
        <div class="card">
          <div class="card-header border-0 pb-0">
          <h4 class="card-title">Timeline</h4>
          </div>
          <div class="card-body">
          <div id="DZ_W_TimeLine" class="widget-timeline dz-scroll height370 ps ps--active-y">
            <ul class="timeline">
            <li>
              <div class="timeline-badge primary"></div>
              <a class="timeline-panel text-muted" href="javascript:void(0);">
              <span>10 minutes ago</span>
              <h6 class="mb-0">Youtube, a video-sharing website, goes live <strong class="text-primary">$500</strong>.</h6>
              </a>
            </li>
            <li>
              <div class="timeline-badge info">
              </div>
              <a class="timeline-panel text-muted" href="javascript:void(0);">
              <span>20 minutes ago</span>
              <h6 class="mb-0">New order placed <strong class="text-info">#XF-2356.</strong></h6>
              <p class="mb-0">Quisque a consequat ante Sit amet magna at volutapt...</p>
              </a>
            </li>
            <li>
              <div class="timeline-badge danger">
              </div>
              <a class="timeline-panel text-muted" href="javascript:void(0);">
              <span>30 minutes ago</span>
              <h6 class="mb-0">john just buy your product <strong class="text-warning">Sell $250</strong></h6>
              </a>
            </li>
            <li>
              <div class="timeline-badge success">
              </div>
              <a class="timeline-panel text-muted" href="javascript:void(0);">
              <span>15 minutes ago</span>
              <h6 class="mb-0">StumbleUpon is acquired by eBay. </h6>
              </a>
            </li>
            <li>
              <div class="timeline-badge warning">
              </div>
              <a class="timeline-panel text-muted" href="javascript:void(0);">
              <span>20 minutes ago</span>
              <h6 class="mb-0">Mashable, a news website and blog, goes live.</h6>
              </a>
            </li>
            <li>
              <div class="timeline-badge dark">
              </div>
              <a class="timeline-panel text-muted" href="javascript:void(0);">
              <span>20 minutes ago</span>
              <h6 class="mb-0">Mashable, a news website and blog, goes live.</h6>
              </a>
            </li>
            <li>
              <div class="timeline-badge primary"></div>
              <a class="timeline-panel text-muted" href="javascript:void(0);">
              <span>10 minutes ago</span>
              <h6 class="mb-0">Youtube, a video-sharing website, goes live <strong class="text-primary">$500</strong>.</h6>
              </a>
            </li>
            <li>
              <div class="timeline-badge info">
              </div>
              <a class="timeline-panel text-muted" href="javascript:void(0);">
              <span>20 minutes ago</span>
              <h6 class="mb-0">New order placed <strong class="text-info">#XF-2356.</strong></h6>
              <p class="mb-0">Quisque a consequat ante Sit amet magna at volutapt...</p>
              </a>
            </li>
            <li>
              <div class="timeline-badge danger">
              </div>
              <a class="timeline-panel text-muted" href="javascript:void(0);">
              <span>30 minutes ago</span>
              <h6 class="mb-0">john just buy your product <strong class="text-warning">Sell $250</strong></h6>
              </a>
            </li>
            <li>
              <div class="timeline-badge success">
              </div>
              <a class="timeline-panel text-muted" href="javascript:void(0);">
              <span>15 minutes ago</span>
              <h6 class="mb-0">StumbleUpon is acquired by eBay. </h6>
              </a>
            </li>
            <li>
              <div class="timeline-badge warning">
              </div>
              <a class="timeline-panel text-muted" href="javascript:void(0);">
              <span>20 minutes ago</span>
              <h6 class="mb-0">Mashable, a news website and blog, goes live.</h6>
              </a>
            </li>
            <li>
              <div class="timeline-badge dark">
              </div>
              <a class="timeline-panel text-muted" href="javascript:void(0);">
              <span>20 minutes ago</span>
              <h6 class="mb-0">Mashable, a news website and blog, goes live.</h6>
              </a>
            </li>
            </ul>
          <div class="ps__rail-x" style="left: 0px; bottom: 0px;"><div class="ps__thumb-x" tabindex="0" style="left: 0px; width: 0px;"></div></div><div class="ps__rail-y" style="top: 0px; height: 370px; right: 0px;"><div class="ps__thumb-y" tabindex="0" style="top: 0px; height: 229px;"></div></div></div>
          </div>
        </div>
        </div>
        <div class="col-md-6">
        <div class="card" style="display: grid; align-content: center;">
          <div class="card-body text-center ai-icon  text-primary">
          <svg id="rocket-icon" class="my-2" viewBox="0 0 24 24" width="80" height="80" stroke="currentColor" stroke-width="1" fill="none" stroke-linecap="round" stroke-linejoin="round">
            <path d="M6 2L3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4z"></path>
            <line x1="3" y1="6" x2="21" y2="6"></line>
            <path d="M16 10a4 4 0 0 1-8 0"></path>
          </svg>
          <h4 class="my-2">You don’t have badges yet</h4>
          <a href="javascript:void(0);" class="btn my-2 btn-primary btn-lg px-4"><i class="fa fa-usd"></i> Earn Budges</a>
          </div>
        </div>
        </div>
      </div>
      </div>
    </div>
    <div class="row">
      
      <div class="col-xl-3 col-xxl-3 col-sm-6">
      <div class="card">
        <div class="social-graph-wrapper widget-facebook">
        <span class="s-icon"><i class="fab fa-facebook-f"></i></span>
        </div>
        <div class="row">
        <div class="col-6 border-end">
          <div class="pt-3 pb-3 pl-0 pr-0 text-center">
          <h4 class="m-1"><span class="count counter">89</span> k</h4>
          <p class="m-0">Friends</p>
          </div>
        </div>
        <div class="col-6">
          <div class="pt-3 pb-3 pl-0 pr-0 text-center">
          <h4 class="m-1"><span class="count counter">119</span> k</h4>
          <p class="m-0">Followers</p>
          </div>
        </div>
        </div>
      </div>
      </div>
      <div class="col-xl-3 col-xxl-3 col-sm-6">
      <div class="card">
        <div class="social-graph-wrapper widget-linkedin">
        <span class="s-icon"><i class="fab fa-linkedin-in"></i></span>
        </div>
        <div class="row">
        <div class="col-6 border-end">
          <div class="pt-3 pb-3 pl-0 pr-0 text-center">
          <h4 class="m-1"><span class="count counter">89</span> k</h4>
          <p class="m-0">Friends</p>
          </div>
        </div>
        <div class="col-6">
          <div class="pt-3 pb-3 pl-0 pr-0 text-center">
          <h4 class="m-1"><span class="count counter">119</span> k</h4>
          <p class="m-0">Followers</p>
          </div>
        </div>
        </div>
      </div>
      </div>
      <div class="col-xl-3 col-xxl-3 col-sm-6">
      <div class="card">
        <div class="social-graph-wrapper widget-googleplus">
        <span class="s-icon"><i class="fab fa-google-plus-g"></i></span>
        </div>
        <div class="row">
        <div class="col-6 border-end">
          <div class="pt-3 pb-3 pl-0 pr-0 text-center">
          <h4 class="m-1"><span class="count counter">89</span> k</h4>
          <p class="m-0">Friends</p>
          </div>
        </div>
        <div class="col-6">
          <div class="pt-3 pb-3 pl-0 pr-0 text-center">
          <h4 class="m-1"><span class="count counter">119</span> k</h4>
          <p class="m-0">Followers</p>
          </div>
        </div>
        </div>
      </div>
      </div>
      <div class="col-xl-3 col-xxl-3 col-sm-6">
      <div class="card">
        <div class="social-graph-wrapper widget-twitter">
        <span class="s-icon"><i class="fab fa-twitter"></i></span>
        </div>
        <div class="row">
        <div class="col-6 border-end">
          <div class="pt-3 pb-3 pl-0 pr-0 text-center">
          <h4 class="m-1"><span class="count counter">89</span> k</h4>
          <p class="m-0">Friends</p>
          </div>
        </div>
        <div class="col-6">
          <div class="pt-3 pb-3 pl-0 pr-0 text-center">
          <h4 class="m-1"><span class="count counter">119</span> k</h4>
          <p class="m-0">Followers</p>
          </div>
        </div>
        </div>
      </div>
      </div>
    </div>
    </div>
  </div>
    <!--**********************************
      Content body end
    ***********************************-->
  
    <!--**********************************
      Footer start
    ***********************************-->
    <div class="footer">
      <div class="copyright">
         <p>Designed <span class="heart"></span> <a href="#">with love</a> 2023</p>
      </div>
    </div>
    <!--**********************************
      Footer end
    ***********************************-->
  
  
  
  
  </div>
  <!--**********************************
    Main wrapper end
  ***********************************-->   

    <!--**********************************
        Scripts
    ***********************************-->
   

  <script src="{% static 'assets/vendor/global/global.min.js' %}"></script>
  <script src="{% static 'assets/vendor/bootstrap-select/dist/js/bootstrap-select.min.js' %}"></script>
  <script src="{% static 'assets/vendor/chart.js/Chart.bundle.min.js' %}"></script>
  <!-- Chart piety plugin files -->
  <script src="{% static 'assets/vendor/peity/jquery.peity.min.js' %}"></script>
  
  <!-- Apex Chart -->
  <script src="{% static 'assets/vendor/apexchart/apexchart.js' %}"></script>
  
  <!-- Dashboard 1 -->
  <script src="{% static 'assets/js/dashboard/dashboard-1.js' %}"></script>
  
    <script src="{% static 'assets/js/custom.min.js' %}"></script>
  <script src="{% static 'assets/js/deznav-init.js' %}"></script>
  <script src="{% static 'assets/js/demo.js' %}"></script>
  
</body>

</html>

7. Guys now please download all the assets from below git repo link and place side static folder on root which we created very first:

Git Repo Link

8. Also guys in the end add below code inside webapp/views.py file to render html file:

from django.shortcuts import render

def BASE(request):
    return render(request, 'base.html')

This is it guys and if you will have any kind of query, suggestion and requirement then please do comment below.

I will come with more free Django free admin templates.

I have just shown you basic things and further more you can set this free project according to your reequipments.

Jassa

Thanks

therichpost
the authortherichpost
Hello to all. Welcome to therichpost.com. Myself Ajay Malhotra and I am freelance full stack developer. I love coding. I know WordPress, Core php, Angularjs, Angular 14, Angular 15, Angular 16, Angular 17, Bootstrap 5, Nodejs, Laravel, Codeigniter, Shopify, Squarespace, jQuery, Google Map Api, Vuejs, Reactjs, Big commerce etc.

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.