Metadata-Version: 2.1
Name: django-admin-material-dashboard-rtl
Version: 1.0.0
Summary: Modern template for Django rtl admin interface
Home-page: https://github.com/atenaswiftie/django-admin-material-dashboard-rtl
Author: atena ganji
Author-email: atena.ganji.ag@gmail.com
License: MIT License
Description: # [Django Admin Material](https://github.com/app-generator/django-admin-material-dashboard)
        
        Modern template for **Django Admin Interface** coded on top of **Material Dashboard**, an open-source `Boostrap 5` design from `Creative-Tim`.
        
        > Actively supported by [AppSeed](https://appseed.us/) via `Email` and `Discord`.
        
        <br>
        
        **Links & Resources**
        
        - UI Kit: [Material Dashboard BS5](https://www.creative-tim.com/product/material-dashboard?AFFILIATE=128200) `v3.0.5` by Creative-Tim
        - [Django Material Dashboard](https://appseed.us/product/material-dashboard/django/) - free starter with the same design
        - [Django Material Dashboard](https://django-material-dashboard.appseed-srv1.com/) - LIVE Demo
        
        <br />
        
        ## [Black Friday](https://appseed.us/discounts/) - `75%OFF`
        
        > The campaign is active until `30.NOV` and applies to all products and licenses.
        
        [![AppSeed - Black Friday 2022 Campaign, 75% OFF Discount (all products).](https://user-images.githubusercontent.com/51070104/201829599-9fe6bdd7-3f19-46f3-9115-962eeb13bf29.jpg)](https://appseed.us/discounts/)
        
        <br />
        
        ## Why `Django Admin Material`
        
        - Modern `Bootstrap 5` Design
        - `Responsive Interface`
        - `Minimal Template` overriding
        - `Easy integration`
        
        <br />
        
        ## How to use it
        
        <br />
        
        > **Install the package** via `PIP` 
        
        ```bash
        $ pip install django-admin-material-dashboard
        // OR
        $ pip install git+https://github.com/app-generator/django-admin-material-dashboard.git
        ```
        
        <br />
        
        > Add `admin_material` 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_material.apps.AdminMaterialDashboardConfig',
                'django.contrib.admin',
            )
        ```
        
        <br />
        
        > 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'
        ```
        
        <br />
        
        > Add `admin_material` urls in your Django Project `urls.py` file
        
        ```python
            from django.urls import path, include
        
            urlpatterns = [
                ...
                path('', include('admin_material.urls')),
            ]
        ```
        
        <br />
        
        > **Collect static** if you are in `production environment`:
        
        ```bash
        $ python manage.py collectstatic
        ```
        
        <br />
        
        > **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/`
        
        <br />
        
        ## Screenshots
        
        > **Material Dashboard Theme** - `Admin Section` 
        
        ![Django Admin Material Dashboard - Admin dashboard page.](https://user-images.githubusercontent.com/51070104/196743760-6e0e1930-8233-421c-ac53-d65c273b00dc.png)
        
        <br />
        
        > **Material Dashboard Theme** - `Admin Widgets`
        
        ![Django Admin Material Dashboard - New User Page.](https://user-images.githubusercontent.com/51070104/196743821-2e140dd8-fe15-4615-9e9f-0467900b1a1b.png)
        
        <br />
        
        ---
        **[Django Admin Material](https://github.com/app-generator/django-admin-material-dashboard)** - Modern Admin Interface provided by **[AppSeed](https://appseed.us/)**
        
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Environment :: Web Environment
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: User Interfaces
Description-Content-Type: text/markdown
