Skip to main content

Edc custom django ModelAdmin mixins, tags and templates for clinicedc/edc projects

Project description

pypi actions codecov downloads

edc-model-admin

Edc custom django ModelAdmin mixins, tags and templates

ModelAdminFormAutoNumberMixin

Overrides ModelAdmin’s get_form to insert question numbers and the DB field names.

ModelAdminNextUrlRedirectMixin

Skips the changelist and redirects to the next CRF or Requisition listed in an edc visit schedule if “[Save and Next]” is clicked instead of “[SAVE]”

class BaseModelAdmin:

    search_fields = ("subject_identifier",)

    add_form_template = "edc_model_admin/admin/change_form.html"
    change_form_template = "edc_model_admin/admin/change_form.html"
    change_list_template = "edc_model_admin/admin/change_list.html"


@admin.register(CrfTwo)
class CrfTwoAdmin(BaseModelAdmin, ModelAdminNextUrlRedirectMixin, admin.ModelAdmin):
    show_save_next = True
    show_cancel = True

You need to use the included change_form.html to override the submit buttons on the admin form.

See also:: edc_visit_schedule

ModelAdminRedirectOnDeleteMixin

Redirects the admin form on save to a view other than the default changelist if post_url_on_delete_name is set.

@admin.register(CrfFive)
class CrfFiveAdmin(ModelAdminRedirectOnDeleteMixin, admin.ModelAdmin):

    post_url_on_delete_name = "dashboard2_app:dashboard_url"

    def post_url_on_delete_kwargs(self, request, obj):
        return {'subject_identifier': obj.subject_identifier}

You can also store url names in the request object if used together with the Middleware from edc_dashboard and edc_subject_dashboard. This is useful if you do not know the namespace until deployment.

For example, add to settings:

MIDDLEWARE=[
    ...,
    'edc_dashboard.middleware.DashboardMiddleware',
    'edc_subject_dashboard.middleware.DashboardMiddleware',
],

DASHBOARD_URL_NAMES={
    'subject_dashboard_url': 'dashboard_app:subject_dashboard_url',
},

and then declare the model admin class:

@admin.register(CrfFive)
class CrfFiveAdmin(ModelAdminRedirectOnDeleteMixin, admin.ModelAdmin):

    post_url_on_delete_name = "subject_dashboard_url"

    def post_url_on_delete_kwargs(self, request, obj):
        return {'subject_identifier': obj.subject_identifier}

ModelAdminRedirectOnDeleteMixin will attempt to get the urlname from the request object using post_url_on_delete_name as a dictionary key.

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

edc-model-admin-0.3.40.tar.gz (52.3 kB view details)

Uploaded Source

Built Distribution

edc_model_admin-0.3.40-py3-none-any.whl (69.3 kB view details)

Uploaded Python 3

File details

Details for the file edc-model-admin-0.3.40.tar.gz.

File metadata

  • Download URL: edc-model-admin-0.3.40.tar.gz
  • Upload date:
  • Size: 52.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.6

File hashes

Hashes for edc-model-admin-0.3.40.tar.gz
Algorithm Hash digest
SHA256 9a0c7c567ab34538c1c9c22ca8ecf2f0b079996da2100eede3b047a78cd7ef3b
MD5 47cc93df5301f0f3653d7e1a3b4a6b7d
BLAKE2b-256 cfd07cba1c3a650131f184bfde2bea0768e872ba5a2d882d5b39e11a279bc1ef

See more details on using hashes here.

File details

Details for the file edc_model_admin-0.3.40-py3-none-any.whl.

File metadata

File hashes

Hashes for edc_model_admin-0.3.40-py3-none-any.whl
Algorithm Hash digest
SHA256 d3fb257cfa7fb32d9dad883ec8cf5ebeec8e1eaedbcce321a10fbd5a9e4a26ba
MD5 19d0e1f4f55ddba9b510b6d0ffd28df3
BLAKE2b-256 06c45a63a4a98689b962a164d69abbd0ef28de940fccbdbc4dc80cbf1b6cf408

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