Skip to content

Commit

Permalink
Release v1.0.11 - DOCS Update & Bump UI
Browse files Browse the repository at this point in the history
  • Loading branch information
app-generator committed Jan 31, 2023
1 parent ccb5587 commit aa39cae
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 6 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Change Log

## [1.0.11] 2023-01-31
### Changes

- DOCS Update (readme)
- Bump design version:
- [Django Admin Volt](https://github.com/app-generator/django-admin-volt) `v1.0.9`

## [1.0.10] 2023-01-28
### Changes

Expand Down
39 changes: 35 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# [Volt Dashboard Django](https://appseed.us/product/volt-dashboard/django/)

Open-source **Django Dashboard** generated by `AppSeed` on top of a modern design. **[Volt Dashboard](https://appseed.us/product/volt-dashboard/django/)** is a free and open source `Bootstrap 5` Admin Dashboard featuring over 100 components, 11 example pages and 3 plugins with Vanilla JS. There are more than 100 free Bootstrap 5 components included some of them being buttons, alerts, modals, and datepickers.
Open-source **Django Dashboard** built on top of a modern design. **[Volt Dashboard](https://appseed.us/product/volt-dashboard/django/)** is a free and open source `Bootstrap 5` Admin Dashboard featuring over 100 components, 11 example pages and 3 plugins with Vanilla JS. There are more than 100 free Bootstrap 5 components included some of them being buttons, alerts, modals, and datepickers.

- 👉 [Volt Dashboard Django](https://appseed.us/product/volt-dashboard/django/) - Product page
- 👉 [Volt Dashboard Django](https://django-volt-dashboard.appseed-srv1.com/) - LIVE Demo
Expand Down Expand Up @@ -70,13 +70,44 @@ At this point, the app runs at `http://127.0.0.1:8000/`.

<br />

## Codebase structure

The project is coded using a simple and intuitive structure presented below:

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

<br />

## 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:

```bash
< LIBRARY_ROOT > # This exists in ENV: LIB/admin_volt
# This exists in ENV: LIB/admin_volt
< UI_LIBRARY_ROOT >
|
|-- templates/ # Root Templates Folder
| |
Expand Down Expand Up @@ -118,7 +149,7 @@ When the project requires customization, we need to copy the original file that
`home/templates/includes/custom_footer.html`

By default, this file is unused because the `theme` expects `footer.html` (without the `custom_` prefix).
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.

Expand Down Expand Up @@ -162,4 +193,4 @@ This design is a pixel-perfect [Bootstrap 5](https://www.admin-dashboards.com/bo
<br />

---
[Django Volt Dashboard](https://appseed.us/product/volt-dashboard/django/) - Minimal **Django** core provided by **[AppSeed](https://appseed.us/)**
[Django Volt Dashboard](https://appseed.us/product/volt-dashboard/django/) - **Django** starter provided by **[AppSeed](https://appseed.us/)**
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<div class="row">
<div class="col-12 col-md-4 col-xl-6 mb-4 mb-md-0">
<p class="mb-0 text-center text-lg-start">
&copy; Your Company
&copy; Your Company HERE
</p>
</div>
<div class="col-12 col-md-8 col-xl-6 text-center text-lg-start">
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ django
gunicorn
python-dotenv
whitenoise
django-admin-volt==1.0.8
django-admin-volt==1.0.9

# psycopg2-binary
# mysqlclient

0 comments on commit aa39cae

Please sign in to comment.