Skip to content

Commit

Permalink
Release v1.0.1 - DOCS Update
Browse files Browse the repository at this point in the history
  • Loading branch information
app-generator committed Feb 27, 2023
1 parent fd50ba5 commit 3d62d09
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 14 deletions.
11 changes: 9 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,16 @@
# CHANGELOG

## [1.0.1] 2023-02-27
### Changes

- DOCS Update (readme)

## [1.0.0] 2023-02-27
### Initial Release
### Changes

- STABLE Version

## [0.0.1] 2023-02-09
### Initial Release
### Changes

- Minimal version
18 changes: 7 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,6 @@ an open-source `Bootstrap` design from [CodedThemes](https://bit.ly/37fF9RT).
<br />

> UI Kit: https://github.com/app-generator/cth-datta-able-bs4
<br />

**Links & Resources**

- [Django Datta Able](https://appseed.us/product/datta-able/django/) - `Product page`
Expand Down Expand Up @@ -124,8 +120,8 @@ The theme used to style this starter provides the following files:
|-- templates/ # Root Templates Folder
| |
| |-- accounts/
| | |-- login.html # Sign IN Page
| | |-- register.html # Sign UP Page
| | |-- auth-signin.html # Sign IN Page
| | |-- auth-signup.html # Sign UP Page
| |
| |-- includes/
| | |-- footer.html # Footer component
Expand All @@ -147,17 +143,17 @@ The theme used to style this starter provides the following files:

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:
For instance, if we want to customize the `index.html` these are the steps:

- `Step 1`: create the `templates` DIRECTORY inside your app
- `Step 2`: configure the project to use this new template directory
- Edit `settings.py` TEMPLATES section
- `Step 3`: copy the `footer.html` from the original location (inside your ENV) and save it to the `YOUR_APP/templates` DIR
- Source PATH: `<YOUR_ENV>/LIB/admin_datta/templates/includes/footer.html`
- Destination PATH: `YOUR_APP/templates/includes/footer.html`
- Edit the `footer.html` (Destination PATH)
- Source PATH: `<YOUR_ENV>/LIB/admin_datta/templates/pages/index.html`
- Destination PATH: `YOUR_APP/templates/pages/index.html`
- Edit the `index.html` (Destination PATH)

At this point, the default version of the `footer.html` shipped in the library is ignored by Django.
At this point, the default version of the `index.html` shipped in the library is ignored by Django.

In a similar way, all other files and components can be customized easily.

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

setup(
name='django-admin-datta',
version='1.0.0',
version='1.0.1',
zip_safe=False,
packages=find_packages(),
include_package_data=True,
Expand Down

0 comments on commit 3d62d09

Please sign in to comment.