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 https://raw.githubusercontent.com/bashu/django-unitology/develop/showcase.gif

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.7.tar.gz (11.8 kB view hashes)

Uploaded Source

Built Distribution

django_unitology-0.0.7-py3-none-any.whl (17.5 kB view hashes)

Uploaded Python 3

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