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
- Host: GitHub
- URL: https://github.com/jacobsvante/grappelli-fit
- Owner: jacobsvante
- License: other
- Created: 2011-10-29T17:03:11.000Z (over 14 years ago)
- Default Branch: master
- Last Pushed: 2011-10-29T19:18:10.000Z (over 14 years ago)
- Last Synced: 2025-02-09T00:37:53.958Z (over 1 year ago)
- Language: JavaScript
- Homepage: http://code.google.com/p/grappelli-fit/
- Size: 108 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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/)