Skip to main content

Tag each page on your website with an indicator text or image

Project description

Django site tag

Django site tag allows you to set 'tags' on each page of your website to indicate current environment, developemnt stages, or whatever else you may want to use such a feature for.

Demo Image

Installation

pip install git+https://github.com/yudori/django-site-tag.git

Setup

After installation, add the django_site_tag app name to the list of installed apps.

INSTALLED_APPS = [
    ... # django apps

    'django_site_tag',

    ... # custom apps
]

Add the site tag middleware to the middleware list.

MIDDLEWARE = [
    ... # django middleware list

    'django_site_tag.middleware.SiteTagMiddleware',

    ... # custom middleware list
]

Customization

Customization options are provided via django settings. Set any of the following values to add customizations to your site tags.

Setting Name Type Description Example Value
SITE_TAG_POSITION string space-separated css position values in the order: top, right, bottom ,left representing the position of the site tag '15px 0px 0px 15px'
SITE_TAG_TEXT string The text to be written on the tag 'TEST'
SITE_TAG_TEXT_STYLE string The css style to be applied to the text 'padding: 10px;'
SITE_TAG_TEXT_BORDER_STYLE string The css style to be applied to the border around the text '2px dashed #ff0000;'
SITE_TAG_IMAGE string The url to the image file to be used instead of text '/static/images/tag.jpg'

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-site-tag-0.0.1.tar.gz (3.3 kB view hashes)

Uploaded Source

Built Distribution

django_site_tag-0.0.1-py3-none-any.whl (5.0 kB view hashes)

Uploaded Python 3

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