2018-12-17 18:32:26 +00:00
|
|
|
{{layout/logo-heading
|
|
|
|
title="Delete Space"
|
|
|
|
desc="Proceed with caution as there is no undo"
|
|
|
|
icon=constants.Icon.Delete}}
|
|
|
|
|
|
|
|
<form>
|
|
|
|
<div class="form-group">
|
|
|
|
<label>Please type space name to confirm</label>
|
|
|
|
{{focus-input id="delete-space-name" type="text" value=deleteSpaceName class="form-control mousetrap" placeholder="Space name" autocomplete="off"}}
|
|
|
|
<small class="form-text text-muted">This will delete all documents and templates within this space!</small>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
|
|
|
|
{{ui/ui-button
|
|
|
|
color=constants.Color.Red
|
|
|
|
icon=constants.Icon.Delete
|
2022-03-01 22:40:51 -05:00
|
|
|
label=(localize 'delete')
|
2018-12-17 18:32:26 +00:00
|
|
|
light=true
|
2018-12-18 11:12:11 +00:00
|
|
|
onClick=(action "onDelete")}}
|