diff --git a/physionet-django/console/navbar.py b/physionet-django/console/navbar.py index fd04c64d3..5321863e0 100644 --- a/physionet-django/console/navbar.py +++ b/physionet-django/console/navbar.py @@ -208,7 +208,7 @@ def get_menu_items(self, request): NavLink(_('Editorial'), 'editorial_stats'), NavLink(_('Credentialing'), 'credentialing_stats'), NavLink(_('Submissions'), 'submission_stats'), - NavLink(_('Download data'), 'downloads'), + NavLink(_('Export data'), 'downloads'), ]), NavSubmenu(_('Pages'), 'pages', 'window-maximize', [ diff --git a/physionet-django/console/templates/console/downloads.html b/physionet-django/console/templates/console/downloads.html index b7af0185c..fc624820b 100644 --- a/physionet-django/console/templates/console/downloads.html +++ b/physionet-django/console/templates/console/downloads.html @@ -2,13 +2,13 @@ {% load static %} -{% block title %}Download data{% endblock %} +{% block title %}Export data{% endblock %} {% block content %}
Download a complete list of published projects, including project names, descriptions, and timelines.
Download projects diff --git a/physionet-django/console/views.py b/physionet-django/console/views.py index b58df2f02..be31221c2 100644 --- a/physionet-django/console/views.py +++ b/physionet-django/console/views.py @@ -2399,6 +2399,7 @@ def generate_user_csv_data(users): "website", "orcid_id", "credentialing_status", + "credentialing_decision_date", "credentialing_organization_name", "credentialing_job_title", "credentialing_city", @@ -2433,6 +2434,7 @@ def generate_user_csv_data(users): user.profile.website, user.get_orcid_id(), user.get_credentialing_status(), + credentials.decision_datetime if credentials else None, credentials.organization_name if credentials else None, credentials.job_title if credentials else None, credentials.city if credentials else None,