Metadata-Version: 2.0
Name: django-lteadmin
Version: 0.1.0a0
Summary: A simple Django app to conduct Web-based polls.
Home-page: https://github.com/ricardochaves/django-adminlte
Author: Ricardo Baltazar Chaves
Author-email: ricardobchaves6@gmail.com
License: BSD
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.10
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Natural Language :: Portuguese (Brazilian)

# Django-LteAdmin #

Change the default Django templates to the [LTE](https://almsaeedstudio.com/themes/AdminLTE/index2.html)

This is my first open source project done in Django, I hope it will be useful for you and look forward to suggestions, bugs and collaborations.

### How do I get set up? ###

Instale usando PyPI:

```python

pip install django-lteadmin

```

Add the app ```adminlte``` to ```settings.py```


```python

INSTALLED_APPS = (
    'adminlte',
    ...
)
```

Execute migrate:

```python
python manage.py migrate
```

## What will you see in your admin? ##

### Avatar ###
The ```User``` object will gain a relationship that will store a picture of the avatar.
You can see this in the user-inclusion form.

### Menu Icons ###
Menu icons are set in the Model:


```python

class MyModel(models.Model):
    Name = models.CharField(
    ...

    def get_icon_menu_model_class(self):
        return 'fa-user'

    def get_icon_menu_add_model_class(self):
        return 'fa-plus'

    def get_icon_menu_change_model_class(self):
        return 'fa-edit'


```

### Contribution guidelines ###

To contribute, read [CONTRIBUTING](CONTRIBUTING.md)

### To Do ###

* Create tests
* Maintain menu status after selecting an item
* Organize the code according to the [PEP 8](http://www.python.org/dev/peps/pep-0008/)



