blob: 9c29a87c330a90ff0ca03f1a7a647bcfaff14bd9 [file] [log] [blame]
<!--********************************************************************************
* Copyright (c) 2015-2018 Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*
********************************************************************************-->
<div bsModal #lgOverwriteModal="bs-modal" class="modal fade" tabindex="-1" role="dialog" aria-labelledby="SelectSearchComponents" aria-hidden="true">
<div class="modal-dialog modal-sm">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title">Es existiert bereits {{label}} mit diesem Namen!</h4>
</div>
<div class="modal-body">
<div class="row">
<div class="col-md-12">
<button type="button" class="btn btn-default" (click)="overwrite(false)">
<span class="glyphicon glyphicon-remove"></span> {{LblCancel}}
</button>
<button type="button" class="btn btn-default pull-right" (click)="overwrite(true)">
<span class="glyphicon glyphicon-ok"></span> {{LblOverwrite}}
</button>
</div>
</div>
</div>
</div>
</div>
</div>