Skip to content

Commit 3d62d09

Browse files
committed
Release v1.0.1 - DOCS Update
1 parent fd50ba5 commit 3d62d09

File tree

3 files changed

+17
-14
lines changed

3 files changed

+17
-14
lines changed

CHANGELOG.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,16 @@
11
# CHANGELOG
22

3+
## [1.0.1] 2023-02-27
4+
### Changes
5+
6+
- DOCS Update (readme)
7+
38
## [1.0.0] 2023-02-27
4-
### Initial Release
9+
### Changes
10+
11+
- STABLE Version
512

613
## [0.0.1] 2023-02-09
7-
### Initial Release
14+
### Changes
815

916
- Minimal version

README.md

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,6 @@ an open-source `Bootstrap` design from [CodedThemes](https://bit.ly/37fF9RT).
77
88
<br />
99

10-
> UI Kit: https://github.com/app-generator/cth-datta-able-bs4
11-
12-
<br />
13-
1410
**Links & Resources**
1511

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

148144
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.
149145

150-
For instance, if we want to customize the `footer.html` these are the steps:
146+
For instance, if we want to customize the `index.html` these are the steps:
151147

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

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

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

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
setup(
1010
name='django-admin-datta',
11-
version='1.0.0',
11+
version='1.0.1',
1212
zip_safe=False,
1313
packages=find_packages(),
1414
include_package_data=True,

0 commit comments

Comments
 (0)