| 1 | <div class="secretKeyManagerItem {{#if active}}active{{/if}}"> |
| 2 | <div class="secretKeyManagerItemInfo"> |
| 3 | <div class="secretKeyManagerItemHeader"> |
| 4 | <strong>{{label}}</strong> |
| 5 | <small>{{value}}</small> |
| 6 | </div> |
| 7 | <div class="secretKeyManagerItemSubtitle"> |
| 8 | <strong>ID:</strong> |
| 9 | <span class="secretKeyManagerItemId" data-action="copy-id" title="Copy ID" data-i18n="[title]Copy ID">{{id}}</span> |
| 10 | </div> |
| 11 | </div> |
| 12 | <div class="secretKeyManagerItemActions"> |
| 13 | <div class="secretKeyManagerItemActionsRow"> |
| 14 | <button class="menu_button menu_button_icon {{#if active}}disabled{{/if}}" data-action="rotate-secret" data-id="{{id}}" title="Select" data-i18n="[title]Select"> |
| 15 | <i class="fa-fw fa-solid fa-check"></i> |
| 16 | </button> |
| 17 | <button class="menu_button menu_button_icon" data-action="copy-secret" data-id="{{id}}" title="Copy" data-i18n="[title]Copy"> |
| 18 | <i class="fa-fw fa-solid fa-copy"></i> |
| 19 | </button> |
| 20 | </div> |
| 21 | <div class="secretKeyManagerItemActionsRow"> |
| 22 | <button class="menu_button menu_button_icon" data-action="rename-secret" data-id="{{id}}" title="Rename" data-i18n="[title]Rename"> |
| 23 | <i class="fa-fw fa-solid fa-pen-to-square"></i> |
| 24 | </button> |
| 25 | <button class="menu_button menu_button_icon" data-action="delete-secret" data-id="{{id}}" title="Delete" data-i18n="[title]Delete"> |
| 26 | <i class="fa-fw fa-solid fa-trash"></i> |
| 27 | </button> |
| 28 | </div> |
| 29 | </div> |
| 30 | </div> |