Skip to content

app-generator/django-admin-atlantis-pro

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 

Repository files navigation

Django starter styled with Atlantis PRO, a premium Bootstrap 4 design from ThemeKita. The product is designed to deliver the best possible user experience with highly customizable feature-rich pages.

👉 NOTE: This product requires a License in order to access the theme:

Private REPO: git+https://github.com/app-generator/priv-django-admin-atlantis-pro


Features:

  • UI Kit: Atlantis BS4 PRO v2.0.1 by ThemeKita
  • Django Atlantis PRO - sample project
  • Sections Covered:
    • Admin Section, reserved for superusers
    • All pages managed by Django.contrib.AUTH
    • Registration page
    • Misc pages: colors, icons, typography, blank-page

Django Atlantis PRO


Why Django Admin Atlantis PRO

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

Atlantis Dashboard PRO comes with error/bug-free, well structured codebase that renders nicely in all major browsers and devices.


How to use it


Install the package via PIP

$ pip install git+https://github.com/app-generator/priv-django-admin-atlantis-pro.git

Add admin_atlantis_pro application to the INSTALLED_APPS setting of your Django project settings.py file (note it should be before django.contrib.admin):

    INSTALLED_APPS = (
        ...
        'admin_atlantis_pro.apps.AdminAtlantisProConfig',
        'django.contrib.admin',
    )

Add LOGIN_REDIRECT_URL and EMAIL_BACKEND of your Django project settings.py file:

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

Add admin_atlantis_pro urls in your Django Project urls.py file

    from django.urls import path, include

    urlpatterns = [
        ...
        path('', include('admin_atlantis_pro.urls')),
    ]

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

Access the admin section in the browser: http://127.0.0.1:8000/


Screenshots

Django Admin Atlantis PRO - Main Dashboard Page.


Django Admin Atlantis PRO - Maps Page

Django Admin Atlantis PRO - Maps Page.


Django Admin Atlantis PRO - Charts Page

Django Admin Atlantis PRO - Charts Page.



Django Admin Atlantis PRO - Modern Admin Interface provided by AppSeed