Skip to content

Commit 0b17545

Browse files
committed
v1.0.26 - Bump UI Version & Added RENDER Button
1 parent 01a55c1 commit 0b17545

File tree

4 files changed

+33
-6
lines changed

4 files changed

+33
-6
lines changed

CHANGELOG.md

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

3+
## [1.0.26] 2024-11-28
4+
### Changes
5+
6+
> Added **Deploy on Render** Button
7+
8+
[![Deploy to Render](https://render.com/images/deploy-to-render-button.svg)](https://render.com/deploy)
9+
310
## [1.0.25] 2024-11-28
411
### Changes
512

README.md

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,21 @@ The product is designed to deliver the best possible user experience with highly
1616

1717
<br />
1818

19+
## Deploy on `Render` (free plan)
20+
21+
[![Deploy to Render](https://render.com/images/deploy-to-render-button.svg)](https://render.com/deploy)
22+
23+
<br />
24+
1925
## Features
2026

21-
- **Django 4.1.12**
22-
- Best Practices
23-
- [Soft UI Dashboard Dashboard](https://app-generator.dev/docs/templates/bootstrap/soft-ui-dashboard.html) - Full Integration
24-
- `CI/CD` Flow via Render
25-
- `Docker`
27+
- Simple, Easy-to-Extend Codebase
28+
- Soft UI Dashboard Design - Full Integration
29+
- Bootstrap 5 Styling
30+
- Session-based Authentication, Password recovery
31+
- DB Persistence: SQLite (default), can be used with MySql, PgSql
32+
- Docker
33+
- CI/CD integration for Render
2634

2735
![Django Soft Dashboard - Modern template for Django Admin Section crafted on top of a modern Bootstrap 5 Design.](https://github.com/user-attachments/assets/9d2f1079-965d-40e1-8e14-c8b26b6609fc)
2836

home/admin.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
11
from django.contrib import admin
22

3+
from django.apps import apps
4+
from django.contrib import admin
5+
36
# Register your models here.
7+
8+
app_models = apps.get_app_config('home').get_models()
9+
for model in app_models:
10+
try:
11+
12+
admin.site.register(model)
13+
14+
except Exception:
15+
pass

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ python-dotenv==1.0.1
44
str2bool==1.1
55

66
# UI
7-
django-admin-soft-dashboard==1.0.21
7+
django-admin-soft-dashboard==1.0.22
88

99
# Deployment
1010
whitenoise==6.6.0

0 commit comments

Comments
 (0)