Skip to main content

MNSI form/model for the clinicedc/edc and other django projects

Project description

pypi actions codecov downloads

edc-mnsi

Django classes for the Michigan Neuropathy Screening Instrument (MNSI).

MNSI scores are calculated in signals.py through a call to the MnsiCalculator and stored in two calculated fields on the model. The two calculated fields can also be viewed as read only on the form in Admin.

See also:

edc_mnsi has an Mnsi model. If the default model does not meet your needs, you can use the Mnsi model mixin, MnsiModelMixin, and declare a custom Mnsi model in your app.

# models.py
from edc_mnsi.model_mixins import MnsiModelMixin
from edc_model import models as edc_models
# a custom mixin
from ..model_mixins import CrfModelMixin


class Mnsi(
    MnsiModelMixin,
    CrfModelMixin,
    edc_models.BaseUuidModel,
):
    class Meta(MnsiModelMixin.Meta, CrfModelMixin.Meta, edc_models.BaseUuidModel.Meta):
        pass

Add the following to settings if using a custom Mnsi model:

EDC_MNSI_MODEL = "my_app.mnsi"

Note: settings.EDC_MNSI_MODEL is needed by edc_mnsi.auths.py to find the Mnsi model. This is applicable if you are using edc_auth.

A custom admin class will be needed for your custom Mnsi model. Here is an example of a custom admin class that refers to fields added to the custom Mnsi model and adds a custom modeladmin mixin.

Note: In your custom admin you should unregister the default admin class before registering your custom admin class.

# admin.py
from django.contrib import admin
from django_audit_fields import audit_fieldset_tuple
from edc_crf.admin import crf_status_fieldset_tuple
from edc_mnsi.admin_site import edc_mnsi_admin
from edc_mnsi.fieldsets import calculated_values_fieldset
from edc_mnsi.fieldsets import get_fieldsets as get_mnsi_fieldsets
from edc_mnsi.model_admin_mixin import MnsiModelAdminMixin, radio_fields
from edc_mnsi.models import Mnsi as DefaultMnsi
from edc_model_admin.history import SimpleHistoryAdmin

# your app's admin site
from ..admin_site import my_app_admin
# your custom form
from ..forms import MnsiForm
# your custom model
from ..models import Mnsi
# a custom mixin
from .modeladmin import CrfModelAdmin

# customize the fieldsets as needed
def get_fieldsets():
    fieldset = (
        None,
        {
            "fields": (
                "subject_visit",
                "report_datetime",
                "mnsi_performed",
                "mnsi_not_performed_reason",
            )
        },
    )

    fieldsets = (fieldset,) + get_mnsi_fieldsets()
    fieldsets += (crf_status_fieldset_tuple,)
    fieldsets += (calculated_values_fieldset,)
    fieldsets += (audit_fieldset_tuple,)
    return fieldsets

# customize radio_fields
radio_fields.update(crf_status=admin.VERTICAL)
# unregister the default model
edc_mnsi_admin.unregister(DefaultMnsi)

@admin.register(Mnsi, site=meta_subject_admin)
class MnsiAdmin(
    MnsiModelAdminMixin,
    CrfModelAdmin,
    SimpleHistoryAdmin,
):
    form = MnsiForm
    fieldsets = get_fieldsets()
    radio_fields = radio_fields

Made with Django

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-mnsi-0.1.16.tar.gz (43.4 kB view details)

Uploaded Source

Built Distribution

edc_mnsi-0.1.16-py3-none-any.whl (48.8 kB view details)

Uploaded Python 3

File details

Details for the file edc-mnsi-0.1.16.tar.gz.

File metadata

  • Download URL: edc-mnsi-0.1.16.tar.gz
  • Upload date:
  • Size: 43.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.3

File hashes

Hashes for edc-mnsi-0.1.16.tar.gz
Algorithm Hash digest
SHA256 bd9c9a61ba8ea4ae5ef84674ec1763cd08342cea0de0659360e681339e699d46
MD5 c3910bc2cef80f9682891ffc14fd07e7
BLAKE2b-256 3df262ab78f71c7658da2a2c715e1efaa1163eb3e52ed269cbbd97a2471c5ae9

See more details on using hashes here.

File details

Details for the file edc_mnsi-0.1.16-py3-none-any.whl.

File metadata

  • Download URL: edc_mnsi-0.1.16-py3-none-any.whl
  • Upload date:
  • Size: 48.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.3

File hashes

Hashes for edc_mnsi-0.1.16-py3-none-any.whl
Algorithm Hash digest
SHA256 a8e8039df366d7873c88a69b21fa77b49d5c5bd0b11b29f068e8bfe652425f08
MD5 cb375fcc3cd87a1f7468e6fd8e66e9f9
BLAKE2b-256 eb3c859e5e8b82b33817b30d6ebf1f7c0a95cdacb2f43dcf34afa5037cd23acb

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