Skip to main content

Adds header and tail scripts from addons.

Project description

pypi build coverage

Aldryn Snake adds tail and head context processors for addons similar to django-sekizai.

This addon still uses the legacy “Aldryn” naming. You can read more about this in our support section.

Contributing

This is a an open-source project. We’ll be delighted to receive your feedback in the form of issues and pull requests. Before submitting your pull request, please review our contribution guidelines.

We’re grateful to all contributors who have helped create and maintain this package. Contributors are listed at the contributors section.

Documentation

See REQUIREMENTS in the setup.py file for additional dependencies:

python django

Installation

  • add aldryn_snake.template_api.template_processor to your TEMPLATE_CONTEXT_PROCESSORS settings

  • somewhere in your app (that will be imported on startup (models, admin etc) add something to the api:

    # -*- coding: utf-8 -*-
    from aldryn_snake.template_api import registry
    from django.conf import settings
    
    OPTIMIZELY_SCRIPT = """<script src="//cdn.optimizely.com/js/%(account_number)s.js"></script>"""
    
    
    def get_crazyegg_script():
      optimizely_number = getattr(settings, 'OPTIMIZELY_ACCOUNT_NUMBER', None)
      if optimizely_number:
          return OPTIMIZELY_SCRIPT % {'account_number': optimizely_number}
       else:
          return ''
    
    registry.add_to_tail(get_crazyegg_script())

If add_to_tail or add_to_head receive a callable, it will be called with the request keyword argument.

  • add the following in your base template to the HEAD:

    {{ ALDRYN_SNAKE.render_head }}
  • add the following in your base template right above </BODY>:

    {{ ALDRYN_SNAKE.render_tail }}

Running Tests

You can run tests by executing:

virtualenv env
source env/bin/activate
pip install -r tests/requirements.txt
python setup.py test

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

aldryn-snake-1.0.0.tar.gz (4.3 kB view details)

Uploaded Source

File details

Details for the file aldryn-snake-1.0.0.tar.gz.

File metadata

  • Download URL: aldryn-snake-1.0.0.tar.gz
  • Upload date:
  • Size: 4.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: Python-urllib/3.7

File hashes

Hashes for aldryn-snake-1.0.0.tar.gz
Algorithm Hash digest
SHA256 fcc73a7f349b0e2e17cc15e361ff05a6d9121adef60e390af0077305fe100345
MD5 c22b8dd4f1b16893bc753af294e9de94
BLAKE2b-256 ae3763569c635a994bebefbbc10ec97b3eaa37472c0c9f0d1e1b5010e160971f

See more details on using hashes here.

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