Socket
Socket
Sign inDemoInstall

django-sundial

Package Overview
Dependencies
3
Maintainers
1
Alerts
File Explorer

Install Socket

Detect and block malicious and high-risk dependencies

Install

    django-sundial

Django application providing database, form fields and middleware for timezone support.


Maintainers
1

Readme

django-sundial

.. image:: https://img.shields.io/pypi/l/django-sundial.svg?style=flat :target: https://pypi.python.org/pypi/django-sundial/ :alt: License

.. image:: https://img.shields.io/pypi/v/django-sundial.svg?style=flat :target: https://pypi.python.org/pypi/django-sundial/ :alt: Latest Version

.. image:: https://travis-ci.org/charettes/django-sundial.svg?branch=master :target: https://travis-ci.org/charettes/django-sundial :alt: Build Status

.. image:: https://coveralls.io/repos/charettes/django-sundial/badge.svg?branch=master :target: https://coveralls.io/r/charettes/django-sundial?branch=master :alt: Coverage Status

.. image:: https://img.shields.io/pypi/pyversions/django-sundial.svg?style=flat :target: https://pypi.python.org/pypi/django-sundial/ :alt: Supported Python Versions

.. image:: https://img.shields.io/pypi/wheel/django-sundial.svg?style=flat :target: https://pypi.python.org/pypi/django-sundial/ :alt: Wheel Status

Django application providing database, form fields and middleware for timezone support.

Installation

.. code:: sh

pip install django-sundial

Usage

.. code:: python

# settings.py
TIME_ZONE = 'America/Chicago'
AUTH_USER_MODEL = 'app.User'
MIDDLEWARE = [
    ...,
    'django.contrib.sessions.middleware.SessionMiddleware',
    ...,
    'sundial.middleware.TimezoneMiddleware',
    ...,
]

.. code:: python

# app/models.py
from django.conf import settings
from django.contrib.auth.models import AbstractUser
from django.contrib.auth.signals import user_logged_in
from django.dispatch.dispatcher import receiver

from sundial.fields import TimezoneField
from sundial.utils import set_session_timezone
from sundial.zones import COMMON_GROUPED_CHOICES

class User(AbstractUser):
    timezone = TimezoneField(
        default=settings.TIME_ZONE, choices=COMMON_GROUPED_CHOICES
    )

@receiver(user_logged_in)
def assign_user_timezone(request, user, **kwargs):
    set_session_timezone(request.session, user.timezone)

Keywords

FAQs


Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc