Skip to content

Commit

Permalink
v1.0.26 - Bump UI Version & Added RENDER Button
Browse files Browse the repository at this point in the history
  • Loading branch information
app-generator committed Nov 28, 2024
1 parent 01a55c1 commit 0b17545
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 6 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Change Log

## [1.0.26] 2024-11-28
### Changes

> Added **Deploy on Render** Button
[![Deploy to Render](https://render.com/images/deploy-to-render-button.svg)](https://render.com/deploy)

## [1.0.25] 2024-11-28
### Changes

Expand Down
18 changes: 13 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,21 @@ The product is designed to deliver the best possible user experience with highly

<br />

## Deploy on `Render` (free plan)

[![Deploy to Render](https://render.com/images/deploy-to-render-button.svg)](https://render.com/deploy)

<br />

## Features

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

![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)

Expand Down
12 changes: 12 additions & 0 deletions home/admin.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
from django.contrib import admin

from django.apps import apps
from django.contrib import admin

# Register your models here.

app_models = apps.get_app_config('home').get_models()
for model in app_models:
try:

admin.site.register(model)

except Exception:
pass
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ python-dotenv==1.0.1
str2bool==1.1

# UI
django-admin-soft-dashboard==1.0.21
django-admin-soft-dashboard==1.0.22

# Deployment
whitenoise==6.6.0
Expand Down

0 comments on commit 0b17545

Please sign in to comment.