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:
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]+'
- Create a group with name: `assignable users
- Add all the users who need to be in the choices for assignees.
Refer to the home page after installation for useage.