You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 7-8.RSVP
Socket
Socket
Sign inDemoInstall

django-google-tools

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

django-google-tools

Django app for managing Google Analytics and Site Verification codes.


Maintainers
1

Readme

Django Google Tools

.. image:: https://secure.travis-ci.org/camilonova/django-google-tools.png?branch=master :alt: Build Status :target: http://travis-ci.org/camilonova/django-google-tools

Django app for managing Google Analytics and Site Verification codes.

Installation

In your virtualenv just type::

$ pip install django-google-tools

Configuration

In Django 1.6 the sites framework is disabled by default, for enable the sites framework in Django 1.6 follow the steps 1, 2 and 3:

  1. Add 'django.contrib.sites' to your INSTALLED_APPS setting.

  2. Define a SITE_ID setting::

    SITE_ID = 1

  3. Run in your shell::

    $ ./manage.py syncdb

  4. Add googletools to your INSTALLED_APPS::

    INSTALLED_APPS = ( 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.sites', ... 'googletools', ... )

  5. Run in your shell::

    $ ./manage.py syncdb

Or if you are using South::

$ ./manage.py migrate

If you have in your settings DEBUG=True googletools will not render anything because this library is inteded mostly to use on production sites, if you want to change this behavior you can set GOOGLETOOLS_ENABLED=True in your settings file. Just for clarification it is defined like this::

GOOGLETOOLS_ENABLED = not DEBUG

This means, by default googletools will be enabled when DEBUG=False.

Management

Go to the admin interface. When correctly installed, you will find the Googletools app. There you can manage your Google Analytics and Site Verification codes.

Templatetags

In order to use the googletools in your templates you'll have to load the templatetags.

{% load googletools %}

Use {% analytics_code %} for inserting your Analytics code.

Use {% site_verification_code %} for inserting your site verification code.

Templatetags will return an empty string if they are not configured for the current site.

The template should look like::

{% load googletools %}
<html>
    <head>
        <meta charset="utf-8">
        ...
        <meta name="description" content="..." />
        {% site_verification_code %}

        <link rel="stylesheet" href="/static/css/style.min.css">

        {% analytics_code %}
    </head>
    <body>
        <h1>My awesome project</h1>
        ...
    </body>
</html>

Keywords

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc