An open API service indexing awesome lists of open source software.

https://github.com/jacobsvante/grappelli-fit

Git fork of grappelli-fit
https://github.com/jacobsvante/grappelli-fit

Last synced: about 1 year ago
JSON representation

Git fork of grappelli-fit

Awesome Lists containing this project

README

          

# Introduction

Grappelli-fit provide a compatibility layer for popular Django applications.

This is an early prototype which currently only support two applications, if it works as expected the list of supported apps will grow.

Feel free to contribute your compatibility layers for your favourites Django applications !

* [View screenshots of supported applications](http://code.google.com/p/grappelli-fit/wiki/TestedApps)
* [Tested applications](http://code.google.com/p/grappelli-fit/wiki/TestedApps)

# Currently supported applications

* [django-rosetta](http://code.google.com/p/django-rosetta/)
* [django-modeltranslation](http://code.google.com/p/django-modeltranslation/)

# Usage

## settings.py

Grappelli-fit works by overriding templates and static files for differents project, so the installation is pretty straight forward:

```python
STATICFILES_DIRS = (
'/path/to/grappelli/static/',
'/path/to/grappellifit/static/',
)

TEMPLATE_DIRS = (
'/path/to/project/templates/',
'/path/to/grappelli/templates/',
'/path/to/grappellifit/templates/',
)

INSTALLED_APPS = (
# ...
'contrib.grappelli',
'contrib.grappellifit',
'django.contrib.admin',
'modeltranslation',
'rosetta',
# ...
)
```

# Credits

This project was created and is sponsored by [Motion Média](http://motion-m.ca/)