https://github.com/app-generator/django-admin-atlantis-pro
Django Theme - Atlantis Dark PRO | AppSeed
https://github.com/app-generator/django-admin-atlantis-pro
django-template django-theme
Last synced: 3 months ago
JSON representation
Django Theme - Atlantis Dark PRO | AppSeed
- Host: GitHub
- URL: https://github.com/app-generator/django-admin-atlantis-pro
- Owner: app-generator
- License: other
- Created: 2023-01-20T05:20:10.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-01-20T06:13:51.000Z (over 2 years ago)
- Last Synced: 2025-04-06T18:12:47.292Z (3 months ago)
- Topics: django-template, django-theme
- Homepage: https://appseed.us/product/atlantis-dark-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 Admin Atlantis PRO](https://appseed.us/product/atlantis-dark-pro/django/)**
**Django** starter styled with **[Atlantis PRO](https://appseed.us/product/atlantis-dark-pro/django/)**, 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](https://appseed.us/product/atlantis-dark-pro/django/) - `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

## Why `Django Admin Atlantis PRO`
- Modern [Bootstrap](https://www.admin-dashboards.com/bootstrap-5-templates/) 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`
```bash
$ 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`):
```python
INSTALLED_APPS = (
...
'admin_atlantis_pro.apps.AdminAtlantisProConfig',
'django.contrib.admin',
)
```
> Add `LOGIN_REDIRECT_URL` and `EMAIL_BACKEND` of your Django project `settings.py` file:
```python
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
```python
from django.urls import path, includeurlpatterns = [
...
path('', include('admin_atlantis_pro.urls')),
]
```
> **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
```Access the `admin` section in the browser: `http://127.0.0.1:8000/`
## Screenshots

> [Django Admin Atlantis PRO](https://appseed.us/product/atlantis-dark-pro/django/) - `Maps Page`

> [Django Admin Atlantis PRO](https://appseed.us/product/atlantis-dark-pro/django/) - `Charts Page`

---
**[Django Admin Atlantis PRO](https://appseed.us/product/atlantis-dark-pro/django/)** - Modern Admin Interface provided by **[AppSeed](https://appseed.us/)**