Open-source Django project crafted on top of Material Dashboard, an open-source Boostrap 5
design from Creative-Tim
The product is designed to deliver the best possible user experience with highly customizable feature-rich pages. Material Material
has easy and intuitive responsive design whether it is viewed on retina screens or laptops.
- 👉 Django Material Dashboard -
Product page
- 👉 Django Material Dashboard -
LIVE Demo
- 🛒 Django Material Dashboard PRO -
Premium Version
Features:
- ✅
Up-to-date Dependencies
- ✅ Theme: Django Admin Material, designed by Creative-Tim
can be used in any Django project
(new or legacy)
- ✅ Authentication:
Django.contrib.AUTH
, Registration - Support-bot ticket metadata display
- ✅ Open/Closed ticket count
- ❌ Average open ticket time
- ✅ Completed ticket count per date range and tags
- Staff analytics per staff
- ✅ Open/Closed tickets
- ✅ Closed ticket count per date range and tags
- Single ticket analysis
- ✅ Display ticket metadata (raised by, claimed by, name...)
- ❌ Display ticket tags
- ❌ Retrieve and display ticket messages (admin only)
- ❌ Text messages
- ❌ Images
- ❌ Reactions
- ❌ Replies
- ❌ Other messages (calls)
- Single ticket commands
- ❌ Add/Modify ticket tags
- ✅ Close/Reopen ticket
- ✅ Delete ticket room
- ✅ Assign staff to ticket
- Support-bot commands
- ❌ Give staff status for user
- ❌ Raise ticket for user and staff
- ❌ Create custom tag
👉 Download the code
$ git clone https://github.com/murlock1000/support-bot-dashboard.git
$ cd support-bot-dashboard
> 👉 Initialize/update sub-modules
$ git submodule update --init --recursive
$ git submodule update --recursive --remote
👉 Install packages via
VENV
$ sudo apt install libpq-dev python3-dev build-essential libolm-dev
$ virtualenv env
$ source env/bin/activate
$ pip install poetry
$ cd ./dependencies/support-bot/
$ poetry --project-file ./dependencies/support-bot/pyproject.toml install
$ cd ../../
$ pip install -r requirements.txt
👉 Configure various config files
$ cp ./core/settings.py.sample ./core/settings.py
$ cp ./data/sample.config.yaml ./data/config.yaml
$ cp credentials ./data/
Edit the default configuration according to your needs.
👉 Set Up Database (for web-interface)
$ python manage.py makemigrations
$ python manage.py migrate
👉 Create the Superuser
$ python manage.py createsuperuser
👉 Start the app
$ python manage.py runserver
At this point, the app runs at http://127.0.0.1:8000/
.
👉 First, update sub-modules
$ git submodule update --recursive --remote
👉 Copy over static files from most up-to-date support-bot branch
$ cp config.py ./support_lib/config.py
$ cp storage.py ./support_lib/storage.py
The project is coded using a simple and intuitive structure presented below:
< PROJECT ROOT >
|
|-- core/
| |-- settings.py # Project Configuration
| |-- urls.py # Project Routing
|
|-- home/
| |-- views.py # APP Views
| |-- urls.py # APP Routing
| |-- models.py # APP Models
| |-- tests.py # Tests
| |-- templates/ # Theme Customisation
| |-- includes #
| |-- custom-footer.py # Custom Footer
|
|-- requirements.txt # Project Dependencies
|
|-- env.sample # ENV Configuration (default values)
|-- manage.py # Start the app - Django default start script
|
|-- ************************************************************************
When a template file is loaded, Django
scans all template directories starting from the ones defined by the user, and returns the first match or an error in case the template is not found.
The theme used to style this starter provides the following files:
# This exists in ENV: LIB/admin_material
< UI_LIBRARY_ROOT >
|
|-- templates/ # Root Templates Folder
| |
| |-- accounts/
| | |-- login.html # Sign IN Page
| | |-- register.html # Sign UP Page
| |
| |-- includes/
| | |-- footer.html # Footer component
| | |-- sidebar.html # Sidebar component
| | |-- navigation.html # Navigation Bar
| | |-- scripts.html # Scripts Component
| |
| |-- layouts/
| | |-- base.html # Masterpage
| | |-- base-auth.html # Masterpage for Auth Pages
| |
| |-- pages/
| |-- index.html # Dashboard Page
| |-- profile.html # Profile Page
| |-- *.html # All other pages
|
|-- ************************************************************************
When the project requires customization, we need to copy the original file that needs an update (from the virtual environment) and place it in the template folder using the same path.
For instance, if we want to customize the footer.html these are the steps:
- ✅
Step 1
: create thetemplates
DIRECTORY inside thehome
app - ✅
Step 2
: configure the project to use this new template directorycore/settings.py
TEMPLATES section
- ✅
Step 3
: copy thefooter.html
from the original location (inside your ENV) and save it to thehome/templates
DIR- Source PATH:
<YOUR_ENV>/LIB/admin_material/template/includes/footer.html
- Destination PATH:
<PROJECT_ROOT>home/templates/includes/footer.html
- Source PATH:
To speed up all these steps, the codebase is already configured (
Steps 1, and 2
) and acustom footer
can be found at this location:
home/templates/includes/custom_footer.html
By default, this file is unused because the theme
expects footer.html
(without the custom-
prefix).
In order to use it, simply rename it to footer.html
. Like this, the default version shipped in the library is ignored by Django.
In a similar way, all other files and components can be customized easily.
The UI can be customized via the SCSS file. This setup was tested using:
Node
v16.15.0Yarn
1.22.18Gulp
CLI version:2.3.0
, Local version:4.0.2
$ cd static
$ yarn # Install Modules
$ vi scss/material-dashboard/_variables.scss # Edit primary, secondary colors
$ gulp # Regenerate CSS files
NOTE, once the CSS files are successfully regenerated, force a hard refresh in the browser (Shift + F5 in Chrome).
The relevant lines in _variables.scss
are highlighted below:
// _variables.scss, LINES 56 -> 63
$primary: #e91e63 !default; // EDIT & Recompile SCSS
$secondary: #7b809a !default; // EDIT & Recompile SCSS
$info: #1A73E8 !default; // EDIT & Recompile SCSS
$success: #4CAF50 !default; // EDIT & Recompile SCSS
$warning: #fb8c00 !default; // EDIT & Recompile SCSS
$danger: #F44335 !default; // EDIT & Recompile SCSS
$light: $gray-200 !default; // EDIT & Recompile SCSS
$dark: $h-color !default; // EDIT & Recompile SCSS