mirror of
https://github.com/DJ2LS/FreeDATA
synced 2024-05-14 08:04:33 +00:00
171 lines
4.3 KiB
Vue
171 lines
4.3 KiB
Vue
<script setup lang="ts">
|
|
import settings_gui from './settings_gui.vue'
|
|
import settings_chat from './settings_chat.vue'
|
|
import settings_hamlib from './settings_hamlib.vue'
|
|
import settings_tnc from './settings_tnc.vue'
|
|
import settings_web from './settings_web.vue'
|
|
import settings_exp from './settings_exp.vue'
|
|
</script>
|
|
<template>
|
|
<div
|
|
class="tab-pane fade"
|
|
id="list-settings"
|
|
role="tabpanel"
|
|
aria-labelledby="list-settings-list"
|
|
>
|
|
<div class="container">
|
|
<div class="badge text-bg-warning ms-3">
|
|
<i class="bi bi-exclamation-triangle"></i> Please restart the TNC after
|
|
changing settings!
|
|
</div>
|
|
<!-- SETTINGS Nav tabs -->
|
|
<ul class="nav nav-tabs" id="myTab" role="tablist">
|
|
<li class="nav-item" role="presentation">
|
|
<button
|
|
class="nav-link active"
|
|
id="gui-tab"
|
|
data-bs-toggle="tab"
|
|
data-bs-target="#gui"
|
|
type="button"
|
|
role="tab"
|
|
aria-controls="home"
|
|
aria-selected="true"
|
|
>
|
|
GUI
|
|
</button>
|
|
</li>
|
|
<li class="nav-item" role="presentation">
|
|
<button
|
|
class="nav-link"
|
|
id="chat-tab"
|
|
data-bs-toggle="tab"
|
|
data-bs-target="#chat"
|
|
type="button"
|
|
role="tab"
|
|
aria-controls="home"
|
|
aria-selected="true"
|
|
>
|
|
Chat
|
|
</button>
|
|
</li>
|
|
<li class="nav-item" role="presentation">
|
|
<button
|
|
class="nav-link"
|
|
id="hamlib-tab"
|
|
data-bs-toggle="tab"
|
|
data-bs-target="#hamlib"
|
|
type="button"
|
|
role="tab"
|
|
aria-controls="profile"
|
|
aria-selected="false"
|
|
>
|
|
Hamlib
|
|
</button>
|
|
</li>
|
|
<li class="nav-item" role="presentation">
|
|
<button
|
|
class="nav-link"
|
|
id="tnc-tab"
|
|
data-bs-toggle="tab"
|
|
data-bs-target="#tnc"
|
|
type="button"
|
|
role="tab"
|
|
aria-controls="profile"
|
|
aria-selected="false"
|
|
>
|
|
TNC
|
|
</button>
|
|
</li>
|
|
<li class="nav-item" role="presentation">
|
|
<button
|
|
class="nav-link"
|
|
id="web-tab"
|
|
data-bs-toggle="tab"
|
|
data-bs-target="#web"
|
|
type="button"
|
|
role="tab"
|
|
aria-controls="messages"
|
|
aria-selected="false"
|
|
>
|
|
Web
|
|
</button>
|
|
</li>
|
|
<li class="nav-item" role="presentation">
|
|
<button
|
|
class="nav-link"
|
|
id="experiments-tab"
|
|
data-bs-toggle="tab"
|
|
data-bs-target="#experiments"
|
|
type="button"
|
|
role="tab"
|
|
aria-controls="settings"
|
|
aria-selected="false"
|
|
>
|
|
Exp
|
|
</button>
|
|
</li>
|
|
</ul>
|
|
|
|
<!-- SETTINGS Nav Tab panes -->
|
|
<div class="tab-content mt-1">
|
|
<!-- GUI tab contents-->
|
|
<div
|
|
class="tab-pane active"
|
|
id="gui"
|
|
role="tabpanel"
|
|
aria-labelledby="gui-tab"
|
|
tabindex="0"
|
|
>
|
|
<settings_gui />
|
|
</div>
|
|
|
|
<div
|
|
class="tab-pane"
|
|
id="chat"
|
|
role="tabpanel"
|
|
aria-labelledby="chat-tab"
|
|
tabindex="0"
|
|
>
|
|
<settings_chat />
|
|
</div>
|
|
|
|
<div
|
|
class="tab-pane"
|
|
id="hamlib"
|
|
role="tabpanel"
|
|
aria-labelledby="hamlib-tab"
|
|
tabindex="0"
|
|
>
|
|
<settings_hamlib />
|
|
</div>
|
|
<div
|
|
class="tab-pane"
|
|
id="tnc"
|
|
role="tabpanel"
|
|
aria-labelledby="tnc-tab"
|
|
tabindex="0"
|
|
>
|
|
<settings_tnc />
|
|
</div>
|
|
<div
|
|
class="tab-pane"
|
|
id="web"
|
|
role="tabpanel"
|
|
aria-labelledby="web-tab"
|
|
tabindex="0"
|
|
>
|
|
<settings_web />
|
|
</div>
|
|
<div
|
|
class="tab-pane"
|
|
id="experiments"
|
|
role="tabpanel"
|
|
aria-labelledby="experiments-tab"
|
|
tabindex="0"
|
|
>
|
|
<settings_exp />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|