-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding project quota to the datatable (#1077)
* adding project quota to the datatable adding storage capacity and usage to the dashboard presenter passing the session id through the welcome controller * creating a single return value for quota usage through the presenter passing that value to the dashboard datatable returning default values for non-approved projects * re-naming variables for readability * updating quota usage text * first pass at creating css for quota progress bar * second pass at creating css for progress bar * adding progress bar to the datatable with a fixed height & width * placing progress bar inline with the quota and defaulting it to a fixed 5 percent for un-approved projects * refining table headings * passing dash session variables in the index * cleaning up unused code
- Loading branch information
Showing
8 changed files
with
43 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -76,3 +76,6 @@ project_create_8.txt | |
|
||
# Ignore rspec report | ||
/spec/fixtures/failed_tests.txt | ||
|
||
# Ignore prettier config | ||
.prettierrc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,7 @@ | |
<th>role</th> | ||
<th>download</th> | ||
<th>activity</th> | ||
<th>quota_usage</th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters