Skip to main content

Django application for advanced template management

Project description

Django application for advanced template management

Allows staff member (with corresponding permissions) to:

  • list all templates used in the project and examine their content

  • change the content of any template

  • create new templates

  • see the differences between the default content (from filesystem or other loader) and the changed content

  • see if the original content has changed since the last change

Installation

Install django-template-admin either from source or using pip.

Configuration

Add 'template_admin' to settings.INSTALLED_APPS.

Configure template loaders:

TEMPLATES[0]['OPTIONS']['loaders'] = [
    ('template_admin.loader.Loader', [
        ('django.template.loaders.cached.Loader', [
            'django.template.loaders.filesystem.Loader',
            'django.template.loaders.app_directories.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-admin-1.0.1.tar.gz (8.6 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