feat: display download progress

This commit is contained in:
tdurieux
2021-09-07 12:10:25 +02:00
parent 1808fe5b2e
commit 7a44a42331
5 changed files with 39 additions and 8 deletions
+8 -2
View File
@@ -10,7 +10,7 @@
<a href="/faq">FAQ</a> for more information.
</p>
<div class="progress" style="height: 25px;">
<div class="progress" style="height: 25px">
<div
class="progress-bar"
role="progressbar"
@@ -19,7 +19,13 @@
aria-valuemin="0"
aria-valuemax="100"
>
{{repo.status | title}}
<span>
{{repo.status | title}}
<span
ng-if="repo.status == 'download' && repo.statusMessage"
ng-bind="repo.statusMessage | humanFileSize"
></span>
</span>
</div>
</div>