Skip to content

Commit 1f4020c

Browse files
committed
v1.0.22 - Dynamic Services & Codebase Refactoring
1 parent 0094054 commit 1f4020c

File tree

6 files changed

+18
-15
lines changed

6 files changed

+18
-15
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+
## [1.0.22] 2025-05-16
4+
### Changes
5+
6+
- Added Dynamic Services
7+
- Codebase Refactoring
8+
39
## [1.0.21] 2024-12-16
410
### Changes
511

apps/dyn_dt/migrations/0001_initial.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Generated by Django 4.2.9 on 2025-03-30 11:44
1+
# Generated by Django 4.2.9 on 2025-05-16 05:29
22

33
from django.db import migrations, models
44

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Generated by Django 4.2.9 on 2025-04-28 16:38
1+
# Generated by Django 4.2.9 on 2025-05-16 05:29
22

33
from django.db import migrations, models
44

@@ -7,17 +7,16 @@ class Migration(migrations.Migration):
77

88
initial = True
99

10-
dependencies = [
11-
]
10+
dependencies = []
1211

1312
operations = [
1413
migrations.CreateModel(
15-
name='Product',
14+
name="Product",
1615
fields=[
17-
('id', models.AutoField(primary_key=True, serialize=False)),
18-
('name', models.CharField(max_length=100)),
19-
('info', models.CharField(default='', max_length=100)),
20-
('price', models.IntegerField(blank=True, null=True)),
16+
("id", models.AutoField(primary_key=True, serialize=False)),
17+
("name", models.CharField(max_length=100)),
18+
("info", models.CharField(default="", max_length=100)),
19+
("price", models.IntegerField(blank=True, null=True)),
2120
],
2221
),
2322
]

db.sqlite3

0 Bytes
Binary file not shown.

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ str2bool==1.1
55

66
# UI & Admin UI
77
django-jazzmin==3.0.1
8-
django-admin-volt==1.0.10
8+
django-admin-volt==1.0.17
99

1010
# Tools
1111
django-debug-toolbar==4.4.6

templates/includes/sidebar.html

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -188,8 +188,6 @@ <h2 class="h5 mb-3">Hi, Jane</h2>
188188
</li>
189189
{% endif %}
190190

191-
{% if request.user.is_authenticated and not request.user.is_superuser %}
192-
193191
<li class="nav-item {% if 'transaction' in segment %}active{% endif %}">
194192
<a href="{% url 'transaction' %}" class="nav-link">
195193
<span class="sidebar-icon">
@@ -365,7 +363,7 @@ <h2 class="h5 mb-3">Hi, Jane</h2>
365363
</li>
366364
<li role="separator" class="dropdown-divider mt-4 mb-3 border-gray-700"></li>
367365
<li class="nav-item">
368-
<a href="https://github.com/app-generator/django-volt-dashboard" target="_blank"
366+
<a href="https://app-generator.dev/docs/products/django/volt-dashboard/index.html" target="_blank"
369367
class="nav-link d-flex align-items-center">
370368
<span class="sidebar-icon">
371369
<svg class="icon icon-xs me-2" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
@@ -378,7 +376,7 @@ <h2 class="h5 mb-3">Hi, Jane</h2>
378376
</a>
379377
</li>
380378
<li class="nav-item">
381-
<a href="https://appseed.us/support/" target="_blank"
379+
<a href="https://app-generator.dev/support/" target="_blank"
382380
class="btn btn-secondary d-flex align-items-center justify-content-center btn-upgrade-pro">
383381
<span class="sidebar-icon d-inline-flex align-items-center justify-content-center">
384382
<svg class="icon icon-xs me-2" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
@@ -390,7 +388,7 @@ <h2 class="h5 mb-3">Hi, Jane</h2>
390388
<span>Support</span>
391389
</a>
392390
</li>
393-
{% endif %}
391+
394392
</ul>
395393
</div>
396394
</nav>

0 commit comments

Comments
 (0)