Base classes for managing next appointment CRF at each timepoint in clinicedc/edc projects
Project description
edc-next-appointment
Base classes for managing next appointment CRF at each timepoint
Declare in your app as a longitudinal model / CRF.
For example:
# 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
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file edc_next_appointment-0.3.1.tar.gz
.
File metadata
- Download URL: edc_next_appointment-0.3.1.tar.gz
- Upload date:
- Size: 36.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f8ea3f4197a3b5d135e6d7fe2baaf8cff9a83760b75035215ead61268cb5abf4 |
|
MD5 | 84133d643fe07ee21d3ca534e11d2e5d |
|
BLAKE2b-256 | 609b9ceffd142360e3b1383b7f8985a744473f23112e7e7aa5e262168e205b56 |
File details
Details for the file edc_next_appointment-0.3.1-py3-none-any.whl
.
File metadata
- Download URL: edc_next_appointment-0.3.1-py3-none-any.whl
- Upload date:
- Size: 40.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 338ef548b76b9e2985ebed1203f123fe961afac081573ca23b335222d3078e57 |
|
MD5 | 4e7e8dd93fc605ce1b4f874296676286 |
|
BLAKE2b-256 | 1dd5129b6decbebf0339fd5b0eb29df2b51f48ac090310646d2a43869cdc99f0 |