Skip to main content

Modern template for Django (Pixel Lite)

Project description

Django Theme Pixel

Modern template for Django coded on top of Pixel Lite, an open-source Boostrap 5 design from Themesberg.

Actively supported by AppSeed via Email and Discord.


Links & Resources


Pixel Bootstrap Lite - Full-Stack Starter generated by AppSeed.


Video Presentation

This material provides more information about this library and the playground project.

@ToDo


Why Django Pixel Lite

  • Modern Bootstrap 5 Design
  • Responsive Interface
  • Minimal Template overriding
  • Easy integration
  • ALL UI KIT pages available

How to use it


Install the package via PIP

$ pip install django-theme-pixel
// OR
$ pip install git+https://github.com/app-generator/django-theme-pixel.git

Add theme_pixel application to the INSTALLED_APPS setting of your Django project settings.py:

INSTALLED_APPS = [
    "django.contrib.admin",
    "django.contrib.auth",
    "django.contrib.contenttypes",
    "django.contrib.sessions",
    "django.contrib.messages",
    "django.contrib.staticfiles",

    'theme_pixel',          # <-- NEW 
]

Update project settings.py file to include (at the end of the file):

LOGIN_REDIRECT_URL = '/'
EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend'

Add theme_pixel urls in your Django Project urls.py file.

from django.urls import path, include       # <-- UPD with 'include' directive

urlpatterns = [
    ...
    path('', include('theme_pixel.urls')),  #  <-- NEW
]

Collect static if you are in production environment:

$ python manage.py collectstatic

Start the app

$ # 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

@ToDo



Django Theme Pixel - Modern Theme provided by AppSeed

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-theme-pixel-0.0.2.tar.gz (5.0 MB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page