- | {{ bundle.created | date: 'short' }} |
- {{ bundle.status }}
+ {{ bundle.created | date: 'short' }}
+ @if (bundle.built_at) {
+
+ Built: {{ bundle.built_at | date: 'short' }}
+
+ }
+ |
+
+
+ @if (bundle.status === statuses.Processing || bundle.status === statuses.Pending) {
+
+ }
+ {{ statusLabel(bundle.status) }}
+
+ @if (bundle.last_error && bundle.status === statuses.Failed) {
+ {{ bundle.last_error }}
+ }
+ |
+
+ @if (bundle.size_bytes !== undefined && bundle.size_bytes !== null) {
+ {{ bundle.size_bytes | fileSize }}
+ }
+ @if (bundle.size_bytes === undefined || bundle.size_bytes === null) {
+ —
+ }
|
@if (bundle.expiration) {
@@ -47,11 +77,13 @@
}
|
{{ bundle.document_count }} |
-
+ | {{ fileVersionLabel(bundle.file_version) }} |
+
+ @if (bundle.status === statuses.Failed) {
+
+ }
|