Skip to content

Commit

Permalink
feat: add username and date export certificates
Browse files Browse the repository at this point in the history
On export certificates csv command add username and certificate creation date.
resolves fccn/nau-technical#1
  • Loading branch information
igobranco committed Feb 9, 2024
1 parent 32f4a36 commit 5cdb4cc
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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,
Expand Down

0 comments on commit 5cdb4cc

Please sign in to comment.