Skip to content

botswana-harvard/edc-data-manager

Repository files navigation

Build Status Coverage Status

edc-data-manager

This module registers data related issues and actions them to individuals tacking the issues.

The module works with edc-subject-dashboard and the project dashboard class

Data manager classes

To customise choices for assignees do the following:

Usage

from edc_data_manager.apps import AppConfig as BaseEdcDataManagerAppConfig

class EdcDataManagerAppConfig(BaseEdcDataManagerAppConfig):
extra_assignee_choices = {
    'td_clinic': [
        ('td_clinic', 'TD Clinic'),
        ['[email protected]', '[email protected]']],
    'td_ras': [
        ('td_ras', 'TD RAs'),
        ['[email protected]', '[email protected]']],
    'se_dmc': [
        ('data_management_team', 'Data Management team'),
        ['[email protected]', '[email protected]']]}
    identifier_pattern = '[0-9]{3}-[0-9]+'

Groups

  1. Create a group with name: `assignable users
  2. Add all the users who need to be in the choices for assignees.

How it works

Refer to the home page after installation for useage.