diff --git a/nau_openedx_extensions/management/commands/export_course_certificates.py b/nau_openedx_extensions/management/commands/export_course_certificates.py index 654d776..f332c2c 100644 --- a/nau_openedx_extensions/management/commands/export_course_certificates.py +++ b/nau_openedx_extensions/management/commands/export_course_certificates.py @@ -77,7 +77,9 @@ def handle(self, *args, **options): [ "course_id", "student email", + "student username", "student name", + "certificate created date", "certificate verify_uuid", "certificate_web_link_url", "certificate_download_pdf_link", @@ -97,7 +99,9 @@ def handle(self, *args, **options): [ course_id, certificate.user.email, + certificate.user.username, certificate.name, + certificate.created_date, certificate.verify_uuid, certificate_web_link_url, certificate_download_pdf_link,