missingDueDateDialog.handlebars 512 B

1234567891011121314151617
  1. <div>
  2. <p>
  3. {{#t "modal.notAllSectionsAssigned"}}Not all sections will be assigned this item.{{/t}}
  4. </p>
  5. {{#t "modal.goBackToInclude"}}Would you like to go back to include:{{/t}}
  6. <ul>
  7. {{#each sections}}<li><b>{{this}}</b></li>{{/each}}
  8. </ul>
  9. <div class="button-container form-actions">
  10. <button type="button" class="btn">{{#t "buttons.goBack"}}Go Back{{/t}}</button>
  11. <button type="button" class="btn btn-primary">
  12. {{#t "buttons.continue"}}Continue{{/t}}
  13. </button>
  14. </div>
  15. </div>