SciFi - Django Bootstrap5 Admin & Dashboard Template

Dashboard
Welcome to Scifi - Django Bootstrap5 Admin & Dashboard Template
  • Created Date : 30/April/2024
  • Author : Spruko
  • Company : Spruko Technologies Private Limited

Thank you for showing interest towards our admin template. Feel free to contact us any time. We have a dedicated team to provide you the best support. If you want any queries open support ticket https://support.spruko.com.

Introduction
Welcome to Scifi – Django Bootstrap5 Admin & Dashboard Template

Scifi - Django Premium Bootstrap5 Admin Template, With these template formats, it's very easy to create a presence and grab someone's attention around the web page Because the template is built using HTML5, CSS3, Bootstrap 5 framework and with Sass. So please before you start working with the template take a quick look on the documentation so that you can easily built your website.

If You Love Our Template Design Please don't forgot to rate it. Thank you so much! 😊

Template Description

Scifi is a Django Premium Bootstrap5 Admin Template using modern and minimal design. It is fully flexible user-friendly and responsive. Scifi Modern template is powered with HTML, SASS, & Bootstrap5 which looks great on Desktops, Tablets, and Mobile Devices. This Template Includes 170+ HTML Pages . No Need to do hard work for this template customization. We already designed it and you can easily design your website just how you like it. This template using Bootstrap5 framework. After Purchased this template you will get All HTML Files, CSS, SCSS and JS Files.

It has super clean flat user interface admin design, easy customizable components and widgets.The Template comes with a awesome unique design also we ensure you can easily design template.

It is a fully responsive layout for all type of devices. Works on all major web browsers, Desktop, iPhone, iPad, Tablet and all other smart phone devices

Once you Purchase Scifi Django Premium Bootstrap Admin Template, you will be able to get free download of all future updates.

Template Features
No Jquery Dark Layout RTL Ready
12 Different Dashboards Authentication Pages Error Pages
170+ HTML Pages Easy to Customize Bootstrap5 Responsive Framework
Form Elements Draggable Cards Ratings
Grid JS Tables Data Tables Gallery
Apex Charts Chartjs Charts Echarts
Full Calendar Sweet Alerts Swiper JS
Blog Pages Mail App Chat
File Manager Invoice Landing
Pricing Profile Notifications
24 * 7 Professional Company Support Ecommerce Pages Under Construction Page
Color Theme Support (Primary and Background) Neat, clean and simple design W3C Validated
Switcher Features :
Theme Styles
  • LTR & RTL
  • Vertical & Horizontal Navigation Styles
  • Menu Click & Hover Styles
  • Icon Click & Hover Styles
  • Layout Full Width & Boxed
  • Menu Fixed & Scrollable
  • Header Fixed, Scrollable & Rounded
  • Sidemenu Closed
  • Icon Text Menu
  • Icon Overlay
  • Detached
  • Double Menu
  • Loader Enable & Disable
Theme Colors
  • Theme Primary
  • Background Patterns
  • Card Styling
  • Card Background
  • Menu With Background Images
Minimum Requirements
  • asgiref==3.8.1
  • beautifulsoup4==4.12.3
  • Django==5.0.4
  • django-htmlmin==0.11.0
  • html5lib==1.1
  • six==1.16.0
  • soupsieve==2.5
  • sqlparse==0.5.0
  • tzdata==2024.1
  • webencodings==0.5.1
Installation Process of Python
In order to run Django you need to install Python by the following steps
This steps are based on Windows OS

Step1: Please visite the Official Web Site of the Python python.org

Step2: Click on the Download Python button

Step3: Now your Python setup file has downloaded

Step4: Now Right click on the Python setup file and select Run as administrator click on Yes

Step5: Please click on the Check Box Add Python to PATH. And select Customize installation option

Step6: Click on Install for all users. And click on the Install button to install python on your system

Step7: To check whether Python is installed or not type python --version in your terminal or console

Step8: The pip package is automatically installed with your python installation

Step9: To check whether pip package is installed or not type pip --version in your terminal or console

NOTE: Please follow the official web site python.org to install on Linux/UNIX OS.

SET-UP DJANGO PROJECT
  • Assuming that you have already installed python in your computer.
  • First, you need to create an environment at your project location. where, you want to create your project in your computer globally or locally by setting your project path in the terminal.
  • To create Virtualenv type python -m venv env in your terminal or console
  • Now you need to activate your Virtualenv by typing env\scripts\activate
  • You must activate your Virtualenv to download any new dependencies "locally", otherwise those dependencies will install "globally"
INSTALLATION PROCESS OF Django

Here we are using "Python Manager" to download "Django"

If you know how to create Django project you can skip this step.

  • First open command prompt in my case Example:C:\Users\ADMIN01> and type pip install django and pip install django-htmlmin to install Django globally.
  • To check whether Django is installed or not type python -m django --version in your terminal or console
  • Now open a new command prompt and navigate to the folder where you want to create the Django project.
  • In my case Example:C:\Users\ADMIN01\Desktop\django>.
  • Now type the following command line django-admin startproject projectname and hit enter to create Django project. Here projectname is nothing but your django project folder name that you want to keep as your project name
  • Now you are sucessfully created Django project.
  • To create App or Application navigate to your django project folder Example:C:\Users\ADMIN01\Desktop\django\projectname> in your command prompt and type python manage.py startapp appname
  • Now you are sucessfully created App in your django project.
  • The project that you received will have a file called the requirements.txt file. Now go to that file location and then in your terminal type pip install -r requirements.txt
  • The above command will download all the required packages by using the requirements.txt file.
  • We have an improtant dependency or module called django-htmlmin it is used to minify the html content. You have already installed HTML_MINIFY with the help of requirements.txt file
  • By default we are disabling HTML_MINIFY module i.e., HTML_MINIFY= False if you want to enable HTML_MINIFY module please follow the root path scifi/settings.py in that file you will find HTML_MINIFY= False then change it into HTML_MINIFY= True
  • NOTE: If you have any further queries in installation please refer to the official website HERE

After installation run following command to get Django development server
python manage.py runserver
The Basic Structure Of Django Project
   
		├── app/
		|   ├── __pycache__/
		|   ├── migrations/
		|   ├── templates/
		|   |   ├── components/
		|   |   |   ├── layouts/	
		|   |   |   ├── base.html
		|   |   |   ├── custom-base.html	
		|   |   |   ├── error-base.html	
		|   |   |   ├── landing-base.html	
		|   |   |   └── landing-jobs-base.html
		|   |   └── 170+ html pages	
		|   ├── __init__																
		|   ├── admin															
		|   ├── apps														
		|   ├── models														
		|   ├── tests														
		|   ├── urls												
		|   └── views														
		├── scifi/
		├── static/
		|   └── assets/
		├── db.sqlite3
		├── esbuild.config.js
		├── manage.py
		├── package.json
		├── package-lock
			
		
  • First, unzip the project folder that you received from us.
  • Navigate as shown Example: F:\project folder\app\templates in that template folder will have 170+ html pages
  • Navigate as shown Example: F:\project folder\app\templates\ Open components folder there you will find base.html, custom-base.html, error-base.html, landing-base.html, landing-jobs-base.html files
  • Here base.html file is the base file for all the html pages
  • Here custom-base.html file is the base file for all custom pages ex: createpassword-basic.html, createpassword-cover.html, lockscreen-basic.html, lockscreen-cover.html etc..,
  • Here error-base.html file is the base file for all error pages ex: error401, error404, error500, coming-soon.html, under-maintenance.html
  • Here landing-base.html file is the base file for only landing page ex: landing.html
  • Here landing-jobs-base.html file is the base file for only landing-jobs page ex: landing-jobs.html
  • NOTE : By default switcher is enabled in your template, so the switcher-styles will work i.e., RTL, horizontal, hover and etc..,. So if you want to enable those styles, first you need to remove or disable switcher in your template as shown in switcher section in documentation.
How to Run Django Project in localhost
Step:1 Quick view of Installations

1. Download and Install the python from official site https://python.org/

2. Install Django by using Python as mentioned in the installation process above.

Step:2 Run project
Extract the Django Project Zip Folder:

1. Locate the zip folder of the Django project that you received after purchase.

2. Extract the contents of the zip folder to a desired path on your computer, for example, C:\xampp\htdocs\

Navigate to the Project Directory:

3.Open the command prompt (Windows) or terminal (macOS/Linux).

4. Change directory to your project root path. For example: C:\xampp\htdocs\project

Create a Virtual Environment:

5. In the terminal, type the following command to create a virtual environment named 'env': python -m venv env

Activate the Virtual Environment:

6. Activate the virtual environment by typing the following command : env\Scripts\activate

Install Required Packages:

7. With the virtual environment activated, install the required packages by running: pip install -r requirements.txt

Change Directory to Project Root:

8. Change directory to the project folder: cd project

Run the Django Development Server:

9. In the terminal, run the following command to start the Django development server: python manage.py runserver

Access the Project:

10. Once the server has started, you'll see a message indicating the server address, typically http://127.0.0.1:8000/

11. Open a web browser and navigate to this address to access your Django project.

Purpose of a Starter Kit
Introduction to the Django Template Starter Kit:

The Django template starterkit is a resource that helps developers kickstart their Django web development projects by providing a preconfigured and ready-to-use template. It aims to simplify the initial setup and provide a foundation for building Django-based websites or applications.

Purpose of the Django Template Starter Kit:

The purpose of the Django template starter kit is to save developers time and effort by offering a set of prebuilt files and configurations commonly used in Django projects. Instead of starting from scratch, developers can leverage the starter kit to quickly set up a project structure that adheres to best practices and industry standards.

Benefits of Using the Django Template Starter Kit:

The starter kit eliminates the need to set up the basic project structure manually. It provides a well-organized file and folder structure, including commonly used directories for separating code, templates, assets, and configuration files. This allows developers to focus more on implementing business logic rather than spending time on initial setup.
Before using the Django template starter kit, developers should have a basic understanding of Django and web development concepts. Additionally, they should have a web server environment Django installed on their local machines or a hosting server. Familiarity with HTML, CSS, and JavaScript is also beneficial for frontend development aspects.

Starterkit Overview

You can use the Starterkit if you are creating a new project. It will be time-consuming to use the full admin version for a new project as Scific have more than 170 HTML pages.

We have provided all the pre-build layouts like Sidemenu, Header, Footer and Scripts etc in the Starterkit.

For further information or support regarding the template, please contact us using the provided link.

https://support.spruko.com/
Starterkit Folder Structure
The Basic Structure Of Django PROJECT
      
		├── app/
		|   ├── __pycache__/
		|   ├── migrations/
		|   ├── templates/
		|   |   ├── components/
		|   |   |   ├── layouts/
		|   |   |   └── base.html
		|   |   └── html pages	
		|   ├── __init__																
		|   ├── admin															
		|   ├── apps														
		|   ├── models														
		|   ├── tests														
		|   ├── urls												
		|   └── views														
		├── scifi/
		├── static/
		|   └── assets/
		├── db.sqlite3
		├── esbuild.config.js
		├── manage.py
		├── package.json
		├── package-lock
					
				
  • Take a quick look at the folder structure of the "Starterkit."
  • Integration of your customized HTML pages becomes easy when using the "Starterkit."
  • The "Starterkit" provides all the layouts, related assets, and libs.
  • To explore the contents of the "Starterkit," unzip the project folder received after purchase.
  • Navigate as shown Example: C:\projectname\app\ templates in that project folder in will have one html file and Add your html files here if you have more.
  • Navigate as shown Example: C:\projectname\app\templates\components Open folder there you will find footer.html, header.html, scripts.html, sidebar.html, styles.html, and switcher.html files etc.
  • Here base.html file is the base file for all the html pages.
SCSS & CSS

SciFi comes with power of SCSS. The css files can be generated from scss by simply following below steps:

  • esbuild

    Esbuild is a cutting-edge JavaScript task runner that automates common development tasks, such as compiling Sass to CSS, minifying JavaScript and CSS files, optimizing images, and more. Esbuild allows developers to define tasks that process files in a project, and then run those tasks automatically when files are changed or when specific commands are issued.for more information about Esbuild Check here.

Prerequisites

Please follow below steps to install and setup all prerequisites:

  • Nodejs

    Make sure to have the Node.js installed & running in your computer. If you have already installed nodejs on your computer, you can skip this step, otherwise install nodejs on your computer,

    Note : If you are using the latest version of Node JS or want to install and use the latest version, click here and install all the dependencies manually that are given below in command prompt.

  • esbuild

    Make sure to have the Esbuild installed & running in your computer. If you have already installed Esbuild on your computer, you can skip this step. In order to install, just run command npm install from your terminal.

Installation

To setup, follow below mentioned steps:

  • Install Prerequisites

    Make sure to have all above prerequisites installed & running in your computer

  • Install Dependencies

    Open your terminal, go to your folder and enter the command npm install. This would install all required dependencies in node_modules folder.

After you finished with above steps, you can run the command to compile scss into css: npm run build

Note:- please ensure that you have installed all nodemodules requried to run esbuild tasks .

SCSS & CSS

Here we provided package.json and esbuild.config.js files in your project, you just need to run npm install in your terminal in your project root path.

After compilation of download, you can compile your SCSS files into CSS files by following below procedure.

Command Description
npm run build In SciFi template npm run build command is used for, whatever the changes made in scss files, will watch and compiled into css files.
Compiling Styles

1. In the assets folder you will see css, icon-fonts, images, js, libs, scss, video

Folder Structure

        
		├── assets
		|   ├── css  
		|   ├── icon-fonts 
		|   ├── images
		|   ├── js
		|   ├── libs
		|   ├── scss
		|   └── switcher


2. Now you can compile or customize your styles in scss files that are present in the assets folder.

3. Once the changes made in the files in order to apply those changes to your template you need to run the esbuild commands in the same terminal or command prompt that you have set your project root path.

4. After Compilation, all your .scss files are converted into .css.

Version
  • python : 3.12.1
  • Django : 5.0.4
  • pip : 23.2.1
  • esbuild : 0.19.7
  • node : 20.10.0
  • npm : 10.5.0
Over All Folder Structure
   

		├── app/
		|   ├── __pycache__/
		|   ├── migrations/
		|   ├── templates/
		|   |   ├── components/
		|   |   |   ├── layouts/
		|   |   |   |   ├── landing/
		|   |   |   |   |   ├── footer.html
		|   |   |   |   |   ├── header.html
		|   |   |   |   |   ├── header1.html
		|   |   |   |   |   ├── jobs-footer.html
		|   |   |   |   |   ├── jobs-header.html
		|   |   |   |   |   ├── jobs-header1.html
		|   |   |   |   |   ├── jobs-sidebar.html
		|   |   |   |   |   ├── jobs-sidebar1.html
		|   |   |   |   |   ├── scripts.html
		|   |   |   |   |   ├── sidebar.html
		|   |   |   |   |   ├── sidebar1.html
		|   |   |   |   |   ├── styles.html
		|   |   |   |   |   └── switcher.html
		|   |   |   |   ├── footer.html
		|   |   |   |   ├── header.html		
		|   |   |   |   ├── header1.html		
		|   |   |   |   ├── offcanvas.html	
		|   |   |   |   ├── scripts.html
		|   |   |   |   ├── search-modal.html		
		|   |   |   |   ├── sidebar.html	
		|   |   |   |   ├── styles.html	
		|   |   |   |   └── switcher.html
		|   |   |   ├── base.html
		|   |   |   ├── custom-base.html
		|   |   |   ├── error-base.html
		|   |   |   ├── landing-base.html
		|   |   |   └── landing-jobs-base.html	
		|   |   └── 170+ html pages
		|   ├── __init__.py
		|   ├── admin.py
		|   ├── apps.py
		|   ├── models.py
		|   ├── tests.py
		|   ├── urls.py
		|   └── views.py
		├── scifi/
		|   ├── __pycache__
		|   ├── __init__
		|   ├── asgi.py
		|   ├── settings.py
		|   ├── urls.py
		|   └── wsgi.py
		├── static/
		|   └── assets/
		├── db.sqlite3
		├── esbuild.config.js
		├── manage.py
		├── package-lock.json
		└── package.json

		
SWITCHER?

If you want to remove switcher to your template follow the below process.

FAQ'S

1) How to Change Font Style ?

Step 1:

Go To style.scss (static/assets/scss/styles.scss )

if you want to change another font-family Go to the site Google Fonts And Select One font Family and import In to style.css file

How to Select font Family

Example:

Step 2:

And paste Your Selected font-family in style.scss

Example:

Step 3:

And add the Your Selected font-family in _variables.scss(static/assets/scss/_variables.scss)

Example:

--default-font-family:    							'Rajdhani', sans-serif;
		
	

Note : After Changing styles you must run the command i.e, npm run build

2) How to Change Logo ?

Go To "static/assets/images/brand-logos" folder and replace your logo with Previous Logos within in image size. note: Please don't increase logo sizes. Replace your logo within given image size. otherwise the logo will not fit in particular place it disturbs the template design.

3) How to Change Menu icons ?

By default menu icons are phosphor Icons if you want to change icons please follow below steps
Step 1 :

To change Menu icons, apps/templates/components/layouts/sidebar.html page open and go through app-sidebar section, in that section you will find phosphor Icons of menu in svg , there you can replace previous icon with your icon. Example as shown in below

			
				
				
			
Switcher Styles

Theme Styles

    
	
Attribute Description
data-theme-mode="dark" data-header-styles="dark" data-menu-styles="dark" To set the Dark theme
dir="ltr" To set LTR version default
dir="rtl" To set LTR version to RTL version
data-nav-layout="vertical" To set menu layout to vertical
data-nav-layout="horizontal" data-nav-style="menu-click" To set menu layout to horizontal
data-nav-style="menu-click" To set navigation style to menu click - *Works same for both vertical and horizontal
data-nav-style="menu-hover" To set navigation style to menu hover - *Works same for both vertical and horizontal
data-nav-style="icon-click" To set navigation style to icon click - *Works same for both vertical and horizontal
data-nav-style="icon-hover" To set navigation style to icon hover - *Works same for both vertical and horizontal
data-page-style="modern" To set page style to modern
data-width="fullwidth" To set page width to Full Width
data-width="boxed" To set page width to Boxed
data-menu-position="fixed" To set menu position Fixed
data-menu-position="scrollable" To set menu position Scrollable
data-header-position="fixed" To set header position Fixed
data-header-position="scrollable" To set header position Scrollable
data-vertical-style="closed" To set sidemenu layout style Closed - *Does not work for horizontal
data-vertical-style="icontext" To set sidemenu layout style Icon Text - *Does not work for horizontal
data-vertical-style="overlay" To set sidemenu layout style Icon Overlay - *Does not work for horizontal
data-vertical-style="detached" To set sidemenu layout style Detached - *Does not work for horizontal
data-vertical-style="doublemenu" To set sidemenu layout style Double Menu - *Does not work for horizontal
loader="enable" To enable loader by default

Theme Colors

    
	
Attribute Description
data-menu-styles="dark" To set the menu style to dark
data-header-styles="dark" To set the header style to dark
data-pattern-img="bgpattern1" To set the background Pattern to bgpattern1
data-pattern-img="bgpattern2" To set the background Pattern to bgpattern2
data-pattern-img="bgpattern3" To set the background Pattern to bgpattern3
data-pattern-img="bgpattern4" To set the background Pattern to bgpattern4
data-pattern-img="bgpattern5" To set the background Pattern to bgpattern5
data-pattern-img="bgpattern6" To set the background Pattern to bgpattern6
data-pattern-img="bgpattern7" To set the background Pattern to bgpattern7
data-pattern-img="bgpattern8" To set the background Pattern to bgpattern8
data-pattern-img="bgpattern9" To set the background Pattern to bgpattern9
data-pattern-img="bgpattern10" To set the background Pattern to bgpattern10
data-card-style="style1" To set the card style to style1
data-card-style="style2" To set the card style to style2
data-card-style="style3" To set the card style to style3
data-card-style="style4" To set the card style to style4
data-card-style="style5" To set the card style to style5
data-card-style="style6" To set the card style to style6
data-card-style="style7" To set the card style to style7
data-card-style="style8" To set the card style to style8
data-card-style="style9" To set the card style to style9
data-card-style="style10" To set the card style to style10
data-card-background="background1" To set the card background to background1
data-card-background="background2" To set the card background to background2
data-card-background="background3" To set the card background to background3
data-card-background="background4" To set the card background to background4
data-card-background="background5" To set the card background to background5
data-card-background="background6" To set the card background to background6
data-card-background="background7" To set the card background to background7
data-card-background="background8" To set the card background to background8
data-card-background="background9" To set the card background to background9
data-bg-img="bgimg1" To set menu background image1
data-bg-img="bgimg2" To set menu background image2
data-bg-img="bgimg3" To set menu background image3
data-bg-img="bgimg4" To set menu background image4
data-bg-img="bgimg5" To set menu background image5
Local Storage

How to clear LocalStorage (cookie)?

Step1:

Open custom-switcher.js file static/assets/js/custom-switcher.js

To clear LocalStorage loading functions you need to remove localStorageBackup2() function in custom-switcher.js as shown below


		
			function localStorageBackup2(){

			}
			
		
		
Step2:

To remove complete LocalStorage saving you need to remove all localstorage related calling functions in custom-switcher.js static/assets/js/custom-switcher.js files.

LocalStorage related functions like localStorage.setItem, localStorage.removeItem, localStorage.getItem, localStorage.clear. Below are the some examples to find out.


				localStorage.setItem( );
				localStorage.removeItem( );
				localStorage.getItem( )
				localStorage.clear();
				localStorageBackup2();
		
Step3:

To remove complete LocalStorage saving you also need to remove main.js link present in base.html Path:app/templates/components/base.html as shown below


		<!-- main JS -->
		<script src="{% static 'assets/js/main.js'%}"></script>
						
Primary Color

How to Change Primary Color?

Please follow the below step to change Primary Color
Step :

To change Primary Color you have to open _variables.scss file and replace what color you want as shown in below

Rootpath : _variables.scss (static/assets/scss/_variables.scss )

--primary-rgb:	0, 255, 190;

Note : After Changing styles you must run the command i.e, npm run build

Sources

All plugins runs through npm.

If you want new plugins : Install new plugin from npm then run npm run build command.

Icons

Refer following links for usage:

Icons References
Bootstrap Icons https://icons.getbootstrap.com/
Remix Icons https://remixicon.com/
Feather Icons https://feathericons.com/
Tabler Icons https://tabler-icons.io/
Line Awesome Icons https://icons8.com/line-awesome
Boxicons https://boxicons.com/
Images

Refer following links for usage:

Images References
Vecteezy https://www.vecteezy.com/
Iconscount https://iconscout.com/
Unsplash https://unsplash.com/
Fonts

Refer following links for usage:

Sidemenu Icons

Refer following links for usage:

THANK YOU!