mirror of
https://github.com/grafana/grafana.git
synced 2025-01-09 23:53:25 -06:00
2d7fc55df7
* Unprovision dashboard in case of DisableDeletion = true * Rename command struct * Handle removed provision files * Allow html in confirm-modal * Do not show confirm button without onConfirm * Show dialog on deleting provisioned dashboard * Changed DeleteDashboard to DeleteProvisionedDashboard * Remove unreachable return * Add provisioned checks to API * Remove filter func * Fix and add tests for deleting dashboards * Change delete confirm text * Added and used pkg/errors for error wrapping
35 lines
1.3 KiB
HTML
35 lines
1.3 KiB
HTML
<div class="modal-body" ng-cloak>
|
|
<div class="modal-header">
|
|
<h2 class="modal-header-title">
|
|
<i class="fa {{icon}}"></i>
|
|
<span class="p-l-1">
|
|
{{title}}
|
|
</span>
|
|
</h2>
|
|
|
|
<a class="modal-header-close" ng-click="dismiss();">
|
|
<i class="fa fa-remove"></i>
|
|
</a>
|
|
</div>
|
|
|
|
<div class="modal-content text-center">
|
|
|
|
<div class="confirm-modal-text">
|
|
{{text}}
|
|
<div ng-if="text2 && text2htmlBind" class="confirm-modal-text2" ng-bind-html="text2"></div>
|
|
<div ng-if="text2 && !text2htmlBind" class="confirm-modal-text2">{{text2}}</div>
|
|
</div>
|
|
|
|
<div class="modal-content-confirm-text" ng-if="confirmText">
|
|
<input type="text" class="gf-form-input width-16" style="display: inline-block;" placeholder="Type {{confirmText}} to confirm" ng-model="confirmInput" ng-change="updateConfirmText(confirmInput)">
|
|
</div>
|
|
|
|
<div class="confirm-modal-buttons">
|
|
<button ng-show="onAltAction" type="button" class="btn btn-primary" ng-click="dismiss();onAltAction();">{{altActionText}}</button>
|
|
<button ng-show="onConfirm" type="button" class="btn btn-danger" ng-click="onConfirm();dismiss();" ng-disabled="!confirmTextValid" give-focus="true">{{yesText}}</button>
|
|
<button type="button" class="btn btn-inverse" ng-click="dismiss()">{{noText}}</button>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|