Skip to content

Commit

Permalink
Add decision datetime for last credentialing application.
Browse files Browse the repository at this point in the history
  • Loading branch information
tompollard committed Aug 20, 2024
1 parent 3f68eef commit 52f3b0b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions physionet-django/console/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -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,
Expand Down

0 comments on commit 52f3b0b

Please sign in to comment.