Skip to main content

Modern template for Django (Material Kit)

Project description

Django Theme Soft

Modern template for Django coded on top of Soft Design, an open-source Boostrap 5 design from Creative-Tim.

Actively supported by AppSeed via Email and Discord.


Links & Resources


Soft UI Design - Full-Stack Starter generated by AppSeed.


Video Presentation

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

Django Theme Material Kit - Video Presentation.


Why Django Soft UI Design

  • Modern Bootstrap 5 Design
  • Responsive Interface
  • Minimal Template overriding
  • Easy integration

How to use it


Install the package via PIP

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

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

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

    'theme_soft_design',          # <-- 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_soft_design urls in your Django Project urls.py file.

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

urlpatterns = [
    ...
    path('', include('theme_soft_design.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

Django Theme Soft UI Design - Cover.


Django Theme Soft - Author Page

Django Theme Soft UI Design - Author Page.


Django Theme Soft - Team Component

Django Theme Soft UI Design - Team Component.



Django Theme Soft - Modern KIT Integration 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-soft-design-1.0.7.tar.gz (15.5 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