available_date_description.handlebars 542 B

123456789101112131415161718
  1. {{#if pending}}
  2. <span class="status-description">{{#t "not_available_until"}}Not available until{{/t}}</span>
  3. <span {{ contextSensitiveDatetimeTitle unlockAt }}>
  4. {{tDateToString (fudge unlockAt) 'short'}}
  5. </span>
  6. {{/if}}
  7. {{#if open}}
  8. <span class="status-description">{{#t "available_until"}}Available until{{/t}}</span>
  9. <span {{ contextSensitiveDatetimeTitle lockAt }}>
  10. {{tDateToString (fudge lockAt) 'short'}}
  11. </span>
  12. {{/if}}
  13. {{#if closed}}
  14. <span class="status-description">{{#t "closed"}}Closed{{/t}}</span>
  15. {{/if}}