| 1234567891011121314151617181920 |
- @model string
- @{
- var type = Model ?? "";
- }
- <div class="modal-footer justify-content-between">
- @*style="text-align: center;"*@
- @if (type.ToLower() == "cancel" || type == "1")
- {
- <button type="button" class="btn btn-outline-iwb close-button waves-effect" data-dismiss="modal" style="min-width: 100px;">@L("Cancel")</button>
- }
- else if (type.ToLower() == "save" || type == "2")
- {
- <button type="button" class="btn btn-iwb btn-sm save-btn save-button waves-effect" style="min-width: 100px;">@L("Save")</button>
- }
- else
- {
- <button type="button" class="btn btn-sm btn-outline-iwb close-button waves-effect" data-dismiss="modal" style="min-width:100px;">@L("Cancel")</button>
- <button type="button" class="btn btn-iwb btn-sm save-btn save-button waves-effect" style="min-width:100px;">@L("Save")</button>
- }
- </div>
|