{{#extend "modal" classMod="project-list-confirmation-modal" title=""}}
  {{#content "sections"}}
    {{#extend "modal-body-section"}}
      {{#content "body"}}
        {{#if delete}}
          <div class="confirmation-question">Are you sure you want to delete this list?</div>
        {{else}}
        <div class="form-row form-list-name">
          <label class="form-row__label" for="project-list-name"></label>
          <div class="form-row__field">
            <input class="tbx form-list-name_tbx" id="project-list-name" name="project-list-name" placeholder="List name">
          </div>
          <div class="form-list-name_info form-row__info d-none"></div>
        </div>
        {{/if}}
        <div class="action-block">
          <button class="btn btn-secondary" data-dismiss="modal">
            <span class="btn__text">Cancel</span>
          </button>
          <button class="btn btn-primary action-block_btn">
            {{#if delete}}
              <span class="btn__text">Delete</span>
            {{else if create-new}}
              <span class="btn__text">Create</span>
            {{else if rename}}
              <span class="btn__text">Confirm</span>
            {{/if}}
          </button>
        </div>
      {{/content}}
    {{/extend}}
  {{/content}}
{{/extend}}
