Metadata-Version: 1.1
Name: templado
Version: 0.1
Summary: Templado is a simple Django app to upload your HTML report templates and generate PDF reports by filling the fields of form based on JSON template.
Home-page: https://github.com/nnkps/templado
Author: Anna Kups
Author-email: aniakups@gmail.com
License: BSD License
Description: =====
        Templado
        =====
        
        Templado is a simple Django app to upload your HTML report templates and generate those reports by filling the fields of form based on JSON template.
        
        Detailed documentation is in the "docs" directory.
        
        Quick start
        -----------
        
        1. Add "templado" to your INSTALLED_APPS setting like this::
        
            INSTALLED_APPS = (
                ...
                'bootstrap3',
                'templado',
            )
        
        2. Modify also settings with::
            
            FILE_UPLOAD_HANDLERS = (
                ...
                'django.core.files.uploadhandler.MemoryFileUploadHandler',
                'django.core.files.uploadhandler.TemporaryFileUploadHandler',
            )
        
            TEMPLATE_CONTEXT_PROCESSORS = (
            	...
                'django.contrib.auth.context_processors.auth',
                'django.core.context_processors.request',
            )
        
        3. Include the polls URLconf in your project urls.py like this::
        
            url(r'^templado/', include('templado.urls', namespace='templado')),
        
        4. Run `python manage.py migrate` to create the templado models.
        
        5. Start the development server.
        
        6. Visit http://127.0.0.1:8000/templado/ to start using Templado app.
        
Keywords: template json html pdf report invoice
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
