Skip to content

Commit 0e51de5

Browse files
committed
Release v0.0.5
1 parent 31e7cae commit 0e51de5

File tree

8 files changed

+4377
-85
lines changed

8 files changed

+4377
-85
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Change Log
22

3+
## [0.0.5] 2023-10-03
4+
### Changes
5+
6+
- Integrate Flowbite Dashboard
7+
- Minor Codebase Changes
8+
39
## [0.0.4] 2023-10-03
410
### Changes
511

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<div align="center">
2-
<a href="https://github.com/app-generator/rocket-django">
2+
<a href="https://rocket-django.onrender.com">
33
<img src="https://github-production-user-asset-6210df.s3.amazonaws.com/51070104/272178364-cbac6d97-b2dc-4d95-bab6-891f4ee7d84d.png"" width="64" height="64" alt="Rocket Icon">
44
</a>
55
<h1>
6-
<a href="https://github.com/app-generator/rocket-django">
6+
<a href="https://rocket-django.onrender.com">
77
Rocket Django
88
</a>
99
</h1>
@@ -15,7 +15,7 @@
1515
<br />
1616

1717
<div align="center">
18-
<img src="https://github-production-user-asset-6210df.s3.amazonaws.com/51070104/272187437-19b38cd4-f84f-451b-943a-e3f441d0e5d5.jpg" alt="Django Rocket - Open-source Starter styled with Tailwind and Flowbite.">
18+
<img src="https://github-production-user-asset-6210df.s3.amazonaws.com/51070104/272299949-6f4a8fd7-7cce-472a-9566-9519db338c7d.gif" alt="Django Rocket - Open-source Starter styled with Tailwind and Flowbite.">
1919
</div>
2020

2121
<br />

home/urls.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,5 @@
44

55
urlpatterns = [
66
path("", views.index, name="index"),
7+
path("starter/", views.starter, name="starter"),
78
]

home/views.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,7 @@ def index(request):
88
context = {}
99
return render(request, "index.html", context)
1010

11+
def starter(request):
12+
13+
context = {}
14+
return render(request, "starter.html", context)

0 commit comments

Comments
 (0)