|
|
|
@ -33,7 +33,7 @@ |
|
|
|
|
{{range .Secrets}} |
|
|
|
|
<div class="item"> |
|
|
|
|
<div class="right floated content"> |
|
|
|
|
<button class="ui red tiny button delete-button" data-url="{{$.Link}}/secrets/delete" data-id="{{.ID}}"> |
|
|
|
|
<button class="ui red tiny button delete-button" data-modal-id="delete-secret-modal" data-url="{{$.Link}}/secrets/delete" data-id="{{.ID}}"> |
|
|
|
|
{{$.locale.Tr "settings.delete_key"}} |
|
|
|
|
</button> |
|
|
|
|
</div> |
|
|
|
@ -58,3 +58,23 @@ |
|
|
|
|
{{end}} |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
<div class="ui small basic delete modal" id="delete-secret-modal"> |
|
|
|
|
<div class="ui icon header"> |
|
|
|
|
{{svg "octicon-trash"}} |
|
|
|
|
{{.locale.Tr "secrets.deletion"}} |
|
|
|
|
</div> |
|
|
|
|
<div class="content"> |
|
|
|
|
<p>{{.locale.Tr "secrets.deletion.description"}}</p> |
|
|
|
|
</div> |
|
|
|
|
<div class="actions"> |
|
|
|
|
<div class="ui red basic inverted cancel button"> |
|
|
|
|
<i class="remove icon"></i> |
|
|
|
|
{{.locale.Tr "modal.no"}} |
|
|
|
|
</div> |
|
|
|
|
<div class="ui green basic inverted ok button"> |
|
|
|
|
<i class="checkmark icon"></i> |
|
|
|
|
{{.locale.Tr "modal.yes"}} |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|