Metadata-Version: 1.1
Name: django-admin-material
Version: 0.1.0
Summary: A material style interface for Django Admin.
Home-page: https://github.com/lorenzomorandini/django-admin-material
Author: Lorenzo Morandini
Author-email: lorenzo.morandini94@gmail.com
License: MIT
Description: ===============
        django-admin-material
        ===============
        
        django-admin-material is a different style for Django Admin.
        It is based on Material Design by Google https://material.io
        
        The framework used is Materialize CSS https://materializecss.com
        
        NOTE: This project is still under development. Feel free to contribute and
        open new issues if you find any problem.
        I will release the version 1.0.0 once it becomes stable and production ready.
        
        Installation
        -----------
        
        1. Install using::
        
            pip install django-admin-material
        
        2. Add "django_admin_material" to your INSTALLED_APPS setting like this::
        
            INSTALLED_APPS = [
                ...
                'django_admin_material',
            ]
        
        It should be as high as possible, definetly higher than 'django.contrib.admin'
        
        Demo
        -----------
        
        1. Download/clone this repository
        2. Run (possibly in a virtual environment)::
        
            pip install -r requirements.txt
        
        3. Run::
        
            ./reset_db.sh
        
        It will install the necessary migration and fixtures
        
        4. Run::
        
            python3 manage.py runserver
        
        5. Visit http://localhost:8000/admin
        6. Log in using "admin:admin"
        
        
        Examples
        -----------
        
        .. image:: docs/images/dashboard.png
           :width: 600
        
        .. image:: docs/images/changelist.png
           :width: 600
        
        .. image:: docs/images/form.png
           :width: 600
        
        .. image:: docs/images/inline.png
           :width: 600
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
