GithubHelp home page GithubHelp logo

app-generator / django-argon-dashboard Goto Github PK

View Code? Open in Web Editor NEW
138.0 5.0 49.0 39.81 MB

Argon Dashboard - Open-Source Django Seed Project | AppSeed

Home Page: https://appseed.us/product/argon-dashboard/django/

License: Other

Dockerfile 0.03% Shell 0.02% Python 0.72% HTML 2.79% JavaScript 2.88% CSS 46.87% SCSS 46.69%
argon-dashboard argon2-library argon-django argon-django-starter argon-template argon2-django django-admin-argon django-argon django-argon-bootstrap django-argon-bs4 django-argon-bs5 django-argon-dashboard django-argon-template django-bs5-argon django-theme-bs5

django-argon-dashboard's Introduction

Open-source Django Dashboard project crafted on top of Argon Dashboard, an open-source Bootstrap 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.


Features

Have questions? Contact Support (Email & Discord) provided by AppSeed

Free Version PRO Version Custom Development
โœ“ Django 4.2.9 Everything in Free, plus: Everything in PRO, plus:
โœ“ Best Practices โœ… Premium Bootstrap 5 Design โœ… 1 Week Custom Development
โœ“ Bootstrap 5, Material Design โœ… OAuth GitHub โœ… Team: PM, Developer, Tester
โœ“ CI/CD Flow via Render โœ… API, Charts โœ… Weekly Sprints
โœ“ Docker โœ… DataTables (Filters, Export) โœ… Technical SPECS
โœ“ Free Support (GitHub Issues) โœ… Celery โœ… Documentation
- โœ… Media Files Manager โœ… 30 days Delivery Warranty
- โœ… Extended User Profiles โœ… CI/CD for AWS, DO (Extra)
- โœ… Private REPO Access -
- โœ… Premium Support -
------------------------------------ ------------------------------------ ------------------------------------
โœ“ LIVE Demo ๐Ÿš€ LIVE Demo ๐Ÿ›’ Order: $999 (GUMROAD)

Argon Dashboard 2 - Free Starter.


Manual Build

๐Ÿ‘‰ Download the code

$ git clone https://github.com/app-generator/django-argon-dashboard.git
$ cd django-argon-dashboard

๐Ÿ‘‰ Install modules via VENV

$ virtualenv env
$ source env/bin/activate
$ pip install -r requirements.txt

๐Ÿ‘‰ Set Up Database

$ 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/.


Codebase structure

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
   |
   |-- ************************************************************************

How to Customize

When a template file is loaded in the controller, 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_argon
< UI_LIBRARY_ROOT >                      
   |
   |-- templates/                     # Root Templates Folder 
   |    |          
   |    |-- accounts/       
   |    |    |-- sign-in.html         # Sign IN Page
   |    |    |-- sign-up.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-fullscreen.html # Masterpage for Auth Pages
   |    |
   |    |-- pages/       
   |         |-- dashboard.html       # Dashboard page
   |         |-- profile.html         # Settings  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 the templates DIRECTORY inside the home app
  • โœ… Step 2: configure the project to use this new template directory
    • core/settings.py TEMPLATES section
  • โœ… Step 3: copy the footer.html from the original location (inside your ENV) and save it to the home/templates DIR
    • Source PATH: <YOUR_ENV>/LIB/admin_argon/includes/footer.html
    • Destination PATH: <PROJECT_ROOT>home/templates/includes/footer.html

To speed up all these steps, the codebase is already configured (Steps 1, and 2) and a custom 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.


Recompile SCSS

The SCSS/CSS files used to style the Ui are saved in the static/assets directory. In order to update the Ui colors (primary, secondary) this procedure needs to be followed.

$ yarn # install modules
$ # # edit variables 
$ vi static/assets/scss/argon-dashboard/custom/_variables.scss 
$ gulp # SCSS to CSS translation

The _variables.scss content defines the primary and secondary colors:

$primary:       #5e72e4 !default; // EDIT for customization
$secondary:     #8392ab !default; // EDIT for customization
$info:          #11cdef !default; // EDIT for customization
$success:       #2dce89 !default; // EDIT for customization
$warning:       #fb6340 !default; // EDIT for customization
$danger:        #f5365c !default; // EDIT for customization

Deploy on Render

  • Create a Blueprint instance
  • Click New Blueprint Instance button.
  • Connect your repo which you want to deploy.
  • Fill the Service Group Name and click on Update Existing Resources button.
  • After that your deployment will start automatically.

At this point, the product should be LIVE.


This design is a pixel-perfect Bootstrap 5 Dashboard with a fresh, new design inspired by Google's Material Design. Argon Dashboard 2 PRO is built with over 300 frontend individual elements, like buttons, inputs, navbars, nav tabs, cards, or alerts, giving you the freedom of choosing and combining.

Features:

  • โœ… Up-to-date Dependencies
  • โœ… Design: Django Theme Argon 2 - PRO Version
  • โœ… Sections covered by the design:
    • โœ… Admin section (reserved for superusers)
    • โœ… Authentication: Django.contrib.AUTH, Registration
    • โœ… All Pages available in for ordinary users
  • โœ… Docker
  • ๐Ÿš€ Deployment
    • CI/CD flow via Render

Argon Dashboard 2 PRO - Automotive (Premium Bootstrap 5 Design).



Django Argon Dashboard - Minimal Django core provided by AppSeed

django-argon-dashboard's People

Contributors

app-generator avatar arlington1985 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

django-argon-dashboard's Issues

Change background color

Hi everybody,
It may sound like a silly question but I am not able to change the default background of the dashboard. I need to replace the standard greyish color with the standard white background. I made some tries such as:

  • inspect the argon.css file and inspect the classes
  • Inspect the root colors and tried to change them ( as suggested by Sm0k3 on Discord)
  • tried to set the background on the body via the style attribute setting the background-color: #FFFFFF but this is working for all colors except for white :D

My opinion is that something is affecting the way white is displayed and the final result is not a simple white but it is something more grey. I attach an example.

git

I would like my background to be fully white as it is inside the table but at the moment is light grey as it is on the right.

Any help is appreciated! I am not a deep expert of HTML/CSS

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.