_Footer.cshtml 321 B

12345678910111213
  1. @model int
  2. <div class="modal-footer py-4">
  3. @if (Model != 2)
  4. {
  5. <button type="button" class="btn btn-sm btn-light me-5" data-bs-dismiss="modal">@L("Cancel")</button>
  6. }
  7. @if (Model != 1)
  8. {
  9. <button type="submit" class="btn btn-sm btn-primary save-btn">@L("Save")</button>
  10. }
  11. </div>