Skip to content

Commit 80ffc05

Browse files
committed
v1.0.1 - Dynamic DataTables - Added Filters
1 parent 0ed3de9 commit 80ffc05

File tree

9 files changed

+25
-13
lines changed

9 files changed

+25
-13
lines changed

CHANGELOG.md

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

3+
## [1.0.1] 2025-03-28
4+
### Changes
5+
6+
- Dynamic DataTables - Added Filters
7+
38
## [1.0.0] 2025-03-12
49
### Changes
510

apps/common/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-12 14:23
1+
# Generated by Django 4.2.9 on 2025-03-28 07:51
22

33
from django.db import migrations, models
44

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-16 06:05
1+
# Generated by Django 4.2.9 on 2025-03-28 07:51
22

33
from django.db import migrations, models
44

apps/pages/migrations/0001_initial.py

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Generated by Django 4.2.5 on 2023-10-08 08:05
1+
# Generated by Django 4.2.9 on 2025-03-28 07:51
22

33
from django.db import migrations, models
44

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

88
initial = True
99

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

1312
operations = [
1413
migrations.CreateModel(
15-
name='FileInfo',
14+
name="FileInfo",
1615
fields=[
17-
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
18-
('path', models.URLField()),
19-
('info', models.CharField(max_length=255)),
16+
(
17+
"id",
18+
models.BigAutoField(
19+
auto_created=True,
20+
primary_key=True,
21+
serialize=False,
22+
verbose_name="ID",
23+
),
24+
),
25+
("path", models.URLField()),
26+
("info", models.CharField(max_length=255)),
2027
],
2128
),
2229
]

apps/users/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-12 14:23
1+
# Generated by Django 4.2.9 on 2025-03-28 07:51
22

33
from django.conf import settings
44
from django.db import migrations, models

config/settings.py

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

3636
# Hosts Settings
3737
ALLOWED_HOSTS = ['*']
38-
CSRF_TRUSTED_ORIGINS = ['http://localhost:8000', 'http://localhost:5085', 'http://127.0.0.1:8000', 'http://127.0.0.1:5085', 'https://rocket-django.onrender.com']
38+
CSRF_TRUSTED_ORIGINS = ['http://localhost:8000', 'http://localhost:5085', 'http://127.0.0.1:8000', 'http://127.0.0.1:5085', 'https://rocket-django-htmx.onrender.com']
3939

4040
# Used by DEBUG-Toolbar
4141
INTERNAL_IPS = [

db.sqlite3

12 KB
Binary file not shown.

templates/authentication/sign-in.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<div class="flex flex-col items-center justify-center px-6 pt-8 mx-auto md:h-screen pt:mt-0 dark:bg-gray-900">
66
<a href="/" class="flex items-center justify-center mb-8 text-2xl font-semibold lg:mb-10 dark:text-white">
77
<img src="https://flowbite-admin-dashboard.vercel.app/images/logo.svg" class="mr-4 h-11" alt="FlowBite Logo">
8-
<span>Rocket Django</span>
8+
<span>Rocket HTMX</span>
99
</a>
1010
<!-- Card -->
1111
<div class="w-full max-w-xl p-6 space-y-8 sm:p-8 bg-white rounded-lg shadow dark:bg-gray-800">

templates/authentication/sign-up.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<div class="flex flex-col items-center justify-center px-6 pt-8 mx-auto md:h-screen pt:mt-0 dark:bg-gray-900">
77
<a href="/" class="flex items-center justify-center mb-8 text-2xl font-semibold lg:mb-10 dark:text-white">
88
<img src="https://flowbite-admin-dashboard.vercel.app/images/logo.svg" class="mr-4 h-11" alt="FlowBite Logo">
9-
<span>Rocket Django</span>
9+
<span>Rocket HTMX</span>
1010
</a>
1111
<!-- Card -->
1212
<div class="w-full max-w-xl p-6 space-y-8 sm:p-8 bg-white rounded-lg shadow dark:bg-gray-800">

0 commit comments

Comments
 (0)