Skip to main content

Django nepali datetime helpers.

Project description

Highly motivated package from Django’s DateField & DateTimeField.

Note: Currently only supports DateField. DateTimeField will be supported in future releases.

The package is dependent on nepali-datetime package & the UI for the date picker is forked from https://github.com/leapfrogtechnology/nepali-date-picker.

Installation

$ pip install django-nepali-datetime-field

Quick start

  1. Add nepali-datetime-field to your INSTALLED_APPS setting like this:

    INSTALLED_APPS = [
        ...
        'nepali-datetime-field',
    ]
  2. Import & use NepaliDateField to your model:

    from nepali_datetime_field.models import NepaliDateField
    
    class YourModel(models.Model):
        ...
        nepali_date = NepaliDateField()
  3. Using the field in your form:

    from nepali_datetime_field.forms import NepaliDateField
    
    class YourForm(forms.Form):
        ...
        nepali_date = NepaliDateField()
  4. Whenever using the field in html add the init script to load the date picker:

    <html>
    {% load static %}
    ...
    <body>
    ...
    </body>
    {% static 'nepali_datetime_field/init.js' %}
    </html>
  5. Querying the field:

    import nepali_datetime
    
    nepali_date = nepali_datetime.date(1995,10,1)
    
    # get query
    YourModel.objects.get(nepali_date=nepali_date)
    
    # filter query
    YourModel.objects.filter(nepali_date=nepali_date)
    
    # date range query
    from_date = nepali_datetime.date(1990,1,1)
    to_date = nepali_datetime.date(1999,12,30)
    YourModel.objects.filter(nepali_date__range=(from_date, to_date))

Demo

Demo of example_app deployed here.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-nepali-datetime-field-0.4.tar.gz (5.5 kB view hashes)

Uploaded Source

Built Distribution

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page