Django app for managing Google Analytics and Site Verification codes.
Project description
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:
Add ‘django.contrib.sites’ to your INSTALLED_APPS setting.
Define a SITE_ID setting:
SITE_ID = 1
Run in your shell:
$ ./manage.py syncdb
Add googletools to your INSTALLED_APPS:
INSTALLED_APPS = ( 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.sites', ... 'googletools', ... )
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.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file django-google-tools-1.1.0.tar.gz
.
File metadata
- Download URL: django-google-tools-1.1.0.tar.gz
- Upload date:
- Size: 5.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c22ae6682c711c4053a0b67baebe9b085bf8e589fa5851c87e4f13e202c45073 |
|
MD5 | 45722e9d21b376802dc29d9833c899d5 |
|
BLAKE2b-256 | a52475b8a1302cec391c22dcc1612d40f053410ae1477620666e8aa3722ae042 |