Skip to content

Latest commit

 

History

History
94 lines (64 loc) · 1.95 KB

README.rst

File metadata and controls

94 lines (64 loc) · 1.95 KB

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 !

Currently supported applications

Screenshots

Rosetta

http://i.imgur.com/Jt4Rp.png

Language selection

http://i.imgur.com/2BAjO.png

Change form

Modeltranslation

http://i.imgur.com/QezPx.png

Change list

http://i.imgur.com/xrKot.png

Change form

Django-mptt

http://i.imgur.com/KShyL.png

Change list

Usage

settings.py

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

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:

http://motion-m.ca/media/img/logo.png

Motion Média (http://motion-m.ca)