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 details)

Uploaded Source

Built Distribution

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

Uploaded Python 3

File details

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

File metadata

  • Download URL: django-unitology-0.0.7.tar.gz
  • Upload date:
  • Size: 11.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: Python-urllib/3.8

File hashes

Hashes for django-unitology-0.0.7.tar.gz
Algorithm Hash digest
SHA256 50fc41fe31856f7bd3e94dafb4a9456e93c39f6aa44cffbeb8b6ef09f43aaaf2
MD5 0f6653a4956a8ec4c2fc16ad8ce5699c
BLAKE2b-256 2ca2d48c6167fbf83c853fd2c9f0fe3be0fe2ae5927d9c12f3cc7b30f789332d

See more details on using hashes here.

File details

Details for the file django_unitology-0.0.7-py3-none-any.whl.

File metadata

File hashes

Hashes for django_unitology-0.0.7-py3-none-any.whl
Algorithm Hash digest
SHA256 847d8a2ac28c2b026b4c297a0a0963328e67f22b7ace58e3f059bf3bd4a833cb
MD5 c9790a224217ff08def002869ff2e120
BLAKE2b-256 4d65ece11592ee02f82f22f57050b691c6e70430dacc435e0222fd5446de37ff

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