From 782be6bd3897d80a90aebbe0ad0f7bfaa197054c Mon Sep 17 00:00:00 2001 From: Kobe Date: Tue, 24 Jun 2025 11:50:07 +0200 Subject: [PATCH] restore instance linking and launching --- templates/main/instances.html | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/templates/main/instances.html b/templates/main/instances.html index 5120841..351985a 100644 --- a/templates/main/instances.html +++ b/templates/main/instances.html @@ -60,9 +60,17 @@ buttons=[ { 'text': 'Launch New Instance', + 'url': '#', 'onclick': 'showAddInstanceModal()', - 'icon': 'fa-plus', + 'icon': 'fa-rocket', 'class': 'btn-primary' + }, + { + 'text': 'Link Existing Instance', + 'url': '#', + 'onclick': 'showAddExistingInstanceModal()', + 'icon': 'fa-link', + 'class': 'btn-secondary' } ] ) }}