Skip to main content

Additional template engines for Django.

Project description

Build Status Maintainability codecov Python Version Django Version PyPI version Documentation Status

django-template-engines

Description

Additional template engines for Django (ODT for now).

How to use a specific template backend

In the settings, add:

INSTALLED_APPS = [
    ...
    'template_engines',
]

...

TEMPLATES = [
    {
        'BACKEND': 'template_engines.backends.odt.OdtEngine',
        'DIRS': [
        ],
        'APP_DIRS': True,
    },
    {
        'BACKEND': 'django.template.backends.django.DjangoTemplates',
        'DIRS': [
        ],
        'APP_DIRS': True,
        'OPTIONS': {
            'context_processors': [
                'django.template.context_processors.debug',
                'django.template.context_processors.request',
                'django.contrib.auth.context_processors.auth',
                'django.contrib.messages.context_processors.messages',
            ],
        },
    },
]

A view exemple

from django.views.generic.detail import DetailView


class TemplateView(DetailView):
    queryset = AModel.objects.all()
    template_engine = 'odt'
    content_type = 'application/vnd.oasis.opendocument.text'

    def get_context_data(self, **kwargs):
        context = super().get_context_data(**kwargs)
        context['image'] = {'content': open(path, 'rb').read()}
        return context

Versions

1.1.0

Add:

  • A template tag to load images into a docx template (docx_image_loader).

1.0.0

Add:

  • Docx template engine (template_engines.backends.docx.DocxEngine).
  • Docx template class (template_engines.backends.odt.DocxTemplate).

0.0.4

  • Abstract template engine for writing custom engines (template_engines.backends.abstract.AbstractEngine).
  • Abstract template class for writing custom template classes (template_engines.backends.abstract.AbstractTemplate).
  • Odt template engine (template_engines.backends.odt.OdtEngine).
  • Odt template class (template_engines.backends.odt.OdtTemplate).
  • A template tag to load images into an odt template (odt_image_loader).

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-template-engines-1.0.1.tar.gz (7.0 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page