This is an extension for the django-oscar e-commerce framework. It adds rosetta into the dashboard so that it looks more native and doesn't require translators or translation maintainers to access the django admin.
- pip install from github
- Add both oscar_rosetta and rosetta into your installed apps. Important - rosetta should come after oscar_rosetta in the installed apps to avoid rosettas templates overriding oscar_rosettas version.
- In your urls.py add
from oscar_rosetta import urls as rosetta_urls urlpatterns += patterns('', ('^dashboard/rosetta/', include(rosetta_urls)), )