https://github.com/app-generator/django-theme-pixel-pro
Django Theme - Pixel BS5 PRO | AppSeed
https://github.com/app-generator/django-theme-pixel-pro
appseed bootstrap5 django-template django-theme
Last synced: 3 months ago
JSON representation
Django Theme - Pixel BS5 PRO | AppSeed
- Host: GitHub
- URL: https://github.com/app-generator/django-theme-pixel-pro
- Owner: app-generator
- License: other
- Created: 2023-01-18T09:34:36.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-01-18T14:59:10.000Z (over 2 years ago)
- Last Synced: 2025-04-06T18:13:24.166Z (3 months ago)
- Topics: appseed, bootstrap5, django-template, django-theme
- Homepage: https://appseed.us/product/pixel-bootstrap-pro/django/
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
Awesome Lists containing this project
README
# [Django Theme Pixel PRO](https://appseed.us/product/pixel-bootstrap-pro/django/)
Modern Theme for **Django** that covers authentication pages (registration included) crafted on top of **[Pixel PRO](https://appseed.us/product/pixel-bootstrap/django/)**, a premium `Bootstrap` design from `Themesberg`.
> **NOTE**: This product `requires a License` in order to access the theme. During the purchase, a `GitHub Access TOKEN` is provided.
- 🛒 [Django Pixel PRO](https://appseed.us/product/pixel-bootstrap-pro/django/) - `Product page` (contains payment links)
- 👉 [Django Pixel PRO](https://django-pixel-pro.onrender.com/) - `LIVE Demo` (published on Render)
- 🚀 [Support](https://appseed.us/support/) via `Email` & `Discord`
**Links & Resources**
- ✅ [Django Pixel PRO](https://appseed.us/product/pixel-bootstrap-pro/django/) - `Product page`
- `Features`: Fully-configured, `CI/CD` via Render
- ✅ UI Kit: `Pixel PRO` (Bootstrap 5) by Themesberg
- ✅ `Sections` covered by the design:
- ✅ **Authentication**: `Django.contrib.AUTH`, Registration
- ✅ **All Pages** available in for ordinary users

## Why `Django Pixel PRO`
- Modern [Bootstrap 5](https://www.admin-dashboards.com/bootstrap-5-templates/) `Premium Design`
- `Minimal Template` overriding
- `Easy integration`
- Fully compatible with `Django.contrib.AUTH`
- `Registration` page included
## How to use it
> **Install the package** via `PIP`
```bash
$ pip install git+https://github.com/app-generator/priv-django-theme-pixel-pro.git
```
> Add `theme_pixel_pro` application to the `INSTALLED_APPS` setting of your Django project `settings.py`:
```python
INSTALLED_APPS = [
"django.contrib.admin",
"django.contrib.auth",
"django.contrib.contenttypes",
"django.contrib.sessions",
"django.contrib.messages",
"django.contrib.staticfiles",'theme_pixel_pro', # <-- NEW
]
```
> Update project `settings.py` file to include (at the end of the file):
```python
LOGIN_REDIRECT_URL = '/'
EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend'
```
> Add `theme_pixel_pro` urls in your Django Project `urls.py` file.
```python
from django.urls import path, include # <-- UPD with 'include' directiveurlpatterns = [
...
path('', include('theme_pixel_pro.urls')), # <-- NEW
]
```
> **Collect static** if you are in `production environment`:
```bash
$ python manage.py collectstatic
```
> **Start the app**
```bash
$ # Set up the database
$ python manage.py makemigrations
$ python manage.py migrate
$
$ # Create the superuser
$ python manage.py createsuperuser
$
$ # Start the application (development mode)
$ python manage.py runserver # default port 8000
```
## Screenshots

> [Django Theme Pixel PRO](https://appseed.us/product/pixel-bootstrap-pro/django/) - Built with `Bootstrap 5`

> [Django Theme Pixel PRO](https://appseed.us/product/pixel-bootstrap-pro/django/) - `Pages`

---
**[Django Theme Pixel PRO](https://appseed.us/product/pixel-bootstrap-pro/django/)** - Modern Theme provided by **[AppSeed](https://appseed.us/)**