Skip to content

Commit

Permalink
update storage size
Browse files Browse the repository at this point in the history
  • Loading branch information
briangow committed Aug 23, 2024
1 parent 7786573 commit 4b1cbb7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions physionet-django/console/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -2488,7 +2488,7 @@ def download_projects(request):
"license",
"data_use_agreement",
"signed_dua_count",
"storage_size(MB)",
"storage_size_mb",
"project_home_page",
"ethics_statement",
"corresponding_author_id",
Expand Down Expand Up @@ -2538,7 +2538,7 @@ def clean_html(html_content):
project.license,
project.dua,
DUASignature.objects.filter(project=project.id).count(),
project.main_storage_size / 1000000,
round(project.main_storage_size / 1000000, 1),
project.project_home_page,
clean_html(project.ethics_statement),
', '.join(str(author.id) for author in authors if author.is_corresponding),
Expand Down

0 comments on commit 4b1cbb7

Please sign in to comment.