django-sitesutils

Software Screenshot:
django-sitesutils
Software Details:
Version: 0.1.2
Upload Date: 20 Feb 15
Developer: Mike Yumatov
Distribution Type: Freeware
Downloads: 0

Rating: nan/5 (Total Votes: 0)

django-sitesutils is a Django app that allows you to access current site, using request.site everywhere you can access request object.

Current site is detected using host domain from request object and SITE_ID project setting as a fallback. If site is found, then request.site is set to the respective Site model object from django.contrib.site app, otherwise request.site is a django.contrib.sites.models.RequestSite instance.

Installation

1. Install django-sitesutils using pip:

 pip install django-sitesutils

2. Add RequestSiteMiddleware to your MIDDLEWARE_CLASSES setting:

 MIDDLEWARE_CLASSES = (
 # ...
 'sitesutils.middleware.RequestSiteMiddleware',
 )


 This middleware will set site attribute for the request object. This attribute is evaluated lazily, only when you access it.

3. If you want to access current site in templates, add site context processor to your TEMPLATE_CONTEXT_PROCESSORS settings:

 TEMPLATE_CONTEXT_PROCESSORS = (
 # ...
 'sitesutils.context_processors.site',
 )


Contributing

Feel free to fork, send pull requests or report bugs and issues on github.

Requirements:

  • Python
  • Django

Other Software of Developer Mike Yumatov

Snake
Snake

12 May 15

Django Gears
Django Gears

12 May 15

django-payonline
django-payonline

14 Apr 15

lemon-tinymce
lemon-tinymce

20 Feb 15

Comments to django-sitesutils

Comments not found
Add Comment
Turn on images!