Metadata-Version: 2.1
Name: edc-review-dashboard
Version: 0.2.17
Summary: A dashboard with direct links to a subject's CRFs and Requisitions.
Home-page: https://github.com/clinicedc/edc-review-dashboard
Author: Erik van Widenfelt
Author-email: ew2789@gmail.com
License: GPL license, see LICENSE
Keywords: django edc review dashboard
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Requires-Python: >=3.7

|pypi| |travis| |codecov| |downloads|

Edc Review Dashboard
====================

An alternative dashboard of a subject's visits, CRFs and Requisitions.


Declare in your app:


.. code-block:: python

    class SubjectReviewListboardView(Base):

        listboard_model = 'ambition_subject.subjectvisit'
        model_wrapper_cls = SubjectVisitModelWrapper
        navbar_name = 'ambition_dashboard'

Add URLs:

.. code-block:: python

	urlpatterns = ....

    review_listboard_url_config = UrlConfig(
        url_name='subject_listboard_url',
        view_class=SubjectListboardView,
        label='subject_listboard',
        identifier_label='subject_identifier',
        identifier_pattern=subject_identifier)
    urlpatterns += review_listboard_url_config.review_listboard_urls



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

.. |travis| image:: https://travis-ci.com/clinicedc/edc-review-dashboard.svg?branch=develop
    :target: https://travis-ci.com/clinicedc/edc-review-dashboard

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

.. |downloads| image:: https://pepy.tech/badge/edc-review-dashboard
   :target: https://pepy.tech/project/edc-review-dashboard


