Metadata-Version: 1.1
Name: transmanager
Version: 0.3.2
Summary: A simple Django app to deal with the model content translation tasks
Home-page: https://github.com/APSL/transmanager
Author: Andreu Vallbona
Author-email: avallbona@gmail.com
License: BSD License
Description: ============
        TransManager
        ============
        
        TransManager is a simple django app to deal with the translations tasks of the models content based on django-hvad.
        It's not for static files.
        
        
        Quick start
        -----------
        
        1. Add "transmanager" and "django_tables2" to your INSTALLED_APPS setting like this::
        
            INSTALLED_APPS = [
                ...
                'transmanager',
                'django_tables2',
            ]
        
        2. Include the transmanager URLconf in your project urls.py like this::
        
            url(r'^transmanager', include('transmanager.urls')),
        
        3. Run `python manage.py migrate transmanager` to create the transmanager models.
        
        4. Start de development server and visit: http://127.0.0.1:8000/admin/transmanager/
           then you can setup the languages and the translators users.
        
        5.  Start updating your models content and you'll see the translation tasks appear.
        
        
        Documentation
        -------------
        Visit the `documentation <http://transmanager.readthedocs.io/en/latest/>`_ for an in-depth look at TransManager.
Platform: UNKNOWN
Classifier: Environment :: Web Environment
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: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.8
Classifier: Framework :: Django :: 1.9
