Generic utilities for django
Project description
Installation
Install with pip install djgeneric" or add "djgeneric" directory to your Python path.
Add "djgeneric" to the INSTALLED_APPS tuple found in your settings file.
Run manage.py syncdb to create the new tables
Username and email login
To allow login with username or email, add to settings:
AUTHENTICATION_BACKENDS += ('djgeneric.auth.EmailAuthBackend',)
Optionally you can use the form in djgeneric.auth.CustomAuthenticationForm.
Google Analitics
To use the google analitics code, add to settings:
GOOGLE_ANALYTICS_PROPERTY_ID = 'UA-14845987-3'
GOOGLE_ANALYTICS_DOMAIN = 'mydomain.com'
TEMPLATE_CONTEXT_PROCESSORS += ('djgeneric.contect_processors.google_analitics',)
And then in your base template add:
{% include 'djgeneric/ga.html' %}
Login required middleware
To use the login required middleware, add to settings:
LOGIN_REQUIRED_URLS = (
r'/topsecret/(.*)$',
)
LOGIN_REQUIRED_URLS_EXCEPTIONS = (
r'/topsecret/login(.*)$',
r'/topsecret/logout(.*)$',
)
MIDDLEWARE_CLASSES += ('djgeneric.middleware.RequireLoginMiddleware',)
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
djgeneric-0.1.14.tar.gz
(5.1 kB
view details)
File details
Details for the file djgeneric-0.1.14.tar.gz.
File metadata
- Download URL: djgeneric-0.1.14.tar.gz
- Upload date:
- Size: 5.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.8.1 pkginfo/1.2.1 requests/2.12.4 setuptools/33.1.1 requests-toolbelt/0.7.0 clint/0.5.1 CPython/3.5.3 Linux/4.9.0-11-amd64
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6e42e6e49fd36d8bbc5c8cdee219f9c77f32fe462c87f4b5dc1657259945016c
|
|
| MD5 |
e87cc7b3e52b8646b6ac30f0b99d1a28
|
|
| BLAKE2b-256 |
b3de15a56d3128aacf24f6d2fd3323c5029b0d1fd4dfff7bdc619eacbfb3be3b
|