Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

edc-next-appointment

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

edc-next-appointment

Base classes for managing next appointment CRF at each timepoint in clinicedc/edc projects

  • 0.3.1
  • PyPI
  • Socket score

Maintainers
1

|pypi| |actions| |codecov| |downloads|

edc-next-appointment

Base classes for managing next appointment CRF at each timepoint

Declare in your app as a longitudinal model / CRF.

For example:

.. code-block:: python

# model.py
class NextAppointment(NextAppointmentCrfModelMixin, CrfModelMixin, BaseUuidModel):

    class Meta(CrfModelMixin.Meta, BaseUuidModel.Meta):
        verbose_name = "Next Appointment"
        verbose_name_plural = "Next Appointments"


# forms.py
class NextAppointmentForm(NextAppointmentModelFormMixin, CrfModelFormMixin, forms.ModelForm):
    form_validator_cls = NextAppointmentFormValidator

    class Meta:
        model = NextAppointment
        fields = "__all__"


# admin.py
@admin.register(NextAppointment, site=intecomm_subject_admin)
class NextAppointmentAdmin(NextAppointmentModelAdminMixin, CrfModelAdmin):
    form = NextAppointmentForm

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

.. |actions| image:: https://github.com/clinicedc/edc-next-appointment/workflows/build/badge.svg?branch=develop :target: https://github.com/clinicedc/edc-next-appointment/actions?query=workflow:build

.. |codecov| image:: https://codecov.io/gh/clinicedc/edc-next-appointment/branch/develop/graph/badge.svg :target: https://codecov.io/gh/clinicedc/edc-next-appointment

.. |downloads| image:: https://pepy.tech/badge/edc-next-appointment :target: https://pepy.tech/project/edc-next-appointment

Keywords

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc