ProgressingContentMigrationCollection.handlebars 471 B

1234567891011121314151617
  1. <h2><strong>{{#t "progress_label"}}Current Jobs{{/t}}</strong></h2>
  2. <hr>
  3. {{#if collection.length}}
  4. <ul class="unstyled collectionViewItems row-fluid"></ul>
  5. {{else}}
  6. <p>
  7. {{#t "no_items"}}No jobs have been queued{{/t}}
  8. </p>
  9. {{/if}}
  10. {{#ifEqual ENV.CONTENT_MIGRATIONS_EXPIRE_DAYS 0}}
  11. {{! expiration is disabled, show nothing }}
  12. {{else}}
  13. <p><em>{{#t}}Content import files cannot be downloaded after {{ENV.CONTENT_MIGRATIONS_EXPIRE_DAYS}} days.{{/t}}</em></p>
  14. {{/ifEqual}}