Skip to main content

Customize Django form label in realtime in clinicedc/edc projects

Project description

pypi actions coverage

edc-form-label

Customize Django’s form label in realtime

For a sequence of data collection timepoints, we ask the question, “Are you circumcised?”. At some time point we hope the response will be YES, but until then, we need to ask “Since we last saw you, were you circumcised?”. It is a lot better if we can ask, “Since we last saw you in ‘October 2018’, were you circumcised?”, where ‘October 2018’ represents the timepoint from which we got our last reponse.

This module shows how you can insert ‘October 2018’ into the ModelAdmin/ModelForm the 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.

from edc_form_label import FormLabel, CustomFormLabel, FormLabelModelAdminMixin


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


@register(MyModel)
class MyModelAdmin(FormLabelModelAdminMixin 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)
    ]

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-1.0.2.tar.gz (30.9 kB view details)

Uploaded Source

Built Distribution

edc_form_label-1.0.2-py3-none-any.whl (30.5 kB view details)

Uploaded Python 3

File details

Details for the file edc_form_label-1.0.2.tar.gz.

File metadata

  • Download URL: edc_form_label-1.0.2.tar.gz
  • Upload date:
  • Size: 30.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.4

File hashes

Hashes for edc_form_label-1.0.2.tar.gz
Algorithm Hash digest
SHA256 44ab4ba73fef40ed235c767878f70c8535e51772376f6e0b5d8760cf05f0be23
MD5 8d0b993b368fec9305845b1bd946ea7d
BLAKE2b-256 2f169e51493cc12520e36520b3121416ba516c96367854287af79399ec1b35a0

See more details on using hashes here.

File details

Details for the file edc_form_label-1.0.2-py3-none-any.whl.

File metadata

  • Download URL: edc_form_label-1.0.2-py3-none-any.whl
  • Upload date:
  • Size: 30.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.4

File hashes

Hashes for edc_form_label-1.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 e007ca5774c0c19a4a5f0d93e4101f9faa64d59ff9f9c9c8d03fd46b28585e78
MD5 91a3a82d267018abf484e8d4e540af23
BLAKE2b-256 0f5d5a105df0bc01110a2570808153d91f98e20a3a2ac5f6be3f4d85c16e961e

See more details on using hashes here.

Supported by

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