Skip to main content

Height / Weight fields for Django models & forms with unit conversion

Project description

Custom model fields to store, retrieve and convert measurements of height, weight and more.

Authored by Basil Shubin, and some great contributors.

https://img.shields.io/pypi/v/django-unitology.svg https://img.shields.io/pypi/dm/django-unitology.svg https://img.shields.io/github/license/bashu/django-unitology.svg https://img.shields.io/travis/bashu/django-unitology.svg

Installation

pip install django-unitology

External dependencies

  • jQuery - this is not included in the package since it is expected that in most scenarios this would already be available.

Setup

Add unitology to INSTALLED_APPS:

INSTALLED_APPS += (
    'unitology',
)

Update your urls.py file:

urlpatterns += [
    url(r'^unitology/', include('unitology.urls')),
]

When deploying on production server, don’t forget to run:

python manage.py collectstatic

Usage

# models.py

from django.db import models
from django.contrib import admin

from unitology.models import UnitsFieldMixin
from unitology.fields import WeightField, HeightField
from unitology.forms import UnitsFieldFormMixin


class Person(UnitsFieldMixin):

    name = models.CharField(max_length=128)

    weight = WeightField(blank=True, null=True)
    height = HeightField(blank=True, null=True)


class PersonChangeForm(UnitsFieldFormMixin):

    class Meta:
        model = Person


class PersonAdmin(admin.ModelAdmin):
    form = PersonChangeForm


admin.site.register(Person, PersonAdmin)

Please see example application. This application is used to manually test the functionalities of this package. This also serves as a good example.

You need only Django 1.4 or above to run that. It might run on older versions but that is not tested.

License

django-unitology is released under the MIT license.

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-unitology-0.0.4.tar.gz (10.6 kB view details)

Uploaded Source

Built Distribution

django_unitology-0.0.4-py2-none-any.whl (18.3 kB view details)

Uploaded Python 2

File details

Details for the file django-unitology-0.0.4.tar.gz.

File metadata

File hashes

Hashes for django-unitology-0.0.4.tar.gz
Algorithm Hash digest
SHA256 83686dde80c324de8122bfcaf81d4b547304fe7cd870dc0b95cc22d618b343e6
MD5 3133c40cb9f6a33556d6ecaf626d2920
BLAKE2b-256 3cef9edacc343f87cc18d730a59b89a2a84b4a63dd1031cbca82a5dfee352da3

See more details on using hashes here.

File details

Details for the file django_unitology-0.0.4-py2-none-any.whl.

File metadata

File hashes

Hashes for django_unitology-0.0.4-py2-none-any.whl
Algorithm Hash digest
SHA256 dee079adc6e4b3d6dbd047b7cbb4219d0e96f4c5b2c651e459fc1e0ab0238574
MD5 9e48ecb475c3565c5a309838287ee964
BLAKE2b-256 20e66a13acf1c51d662407d69d1e5bd0d89a47fef3343980b51b7a72523e8d40

See more details on using hashes here.

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