Skip to main content

Customize Django's form label in realtime

Project description

|pypi| |travis| |coverage|

edc-form-label
-------------
Customize Django's form label in realtime



For example:

For a sequence of data collection timepoints, we ask the question, "Are you circumcised". At some point we hope the response will be YES. But until then we need to ask "Since we last saw you in October 2018, were you circumcised?", etc.

.. code-block:: python

from edc_form_label import FormLabel, CustomFormLabel


class MyCustomLabelCondition(CustomLabelCondition):
def check(self, **kwargs):
if self.previous_obj.circumcised == NO:
return True
return False


@register(MyModel)
class MyModelAdmin(admin.ModelAdmin):

fieldsets = (
(None, {
'fields': (
'subject_visit',
'report_datetime',
'circumcised')},
),
)

custom_form_labels = [
FormLabel(
field='circumcised',
custom_label='Since we last saw you in {previous_visit}, were you circumcised?',
condition_cls=MyCustomLabelCondition)
]



.. |pypi| image:: https://img.shields.io/pypi/v/edc-form-label.svg
:target: https://pypi.python.org/pypi/edc-form-label

.. |travis| image:: https://travis-ci.com/clinicedc/edc-form-label.svg?branch=develop
:target: https://travis-ci.com/clinicedc/edc-form-label

.. |coverage| image:: https://coveralls.io/repos/github/clinicedc/edc-form-label/badge.svg?branch=develop
:target: https://coveralls.io/github/clinicedc/edc-form-label?branch=develop


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

edc-form-label-0.1.0.macosx-10.13-x86_64.tar.gz (14.2 kB view hashes)

Uploaded Source

Built Distribution

edc_form_label-0.1.0-py3-none-any.whl (10.7 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