-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·46 lines (39 loc) · 1.54 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html lang="en">
<head>
<title>bruker2bids</title>
<link rel="icon" href="https://api.iconify.design/mingcute:transformation-fill.svg">
<link href="https://cdn.jsdelivr.net/npm/vuetify@3.1.6/dist/vuetify.min.css" rel="stylesheet">
<style>
.description {
white-space: pre-wrap;
font-size: 14px;
}
</style>
</head>
<body>
<script src="https://unpkg.com/vue@3/dist/vue.global.js"></script>
<script src="https://unpkg.com/vue-router@4"></script>
<script src="https://cdn.jsdelivr.net/npm/vuetify@3.1.6/dist/vuetify.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/axios@1.3.4/dist/axios.min.js"></script>
<v-app id="app">
<v-container>
<h1 class="text-center">bruker2bids</h1>
<h4>data directory: {{store.data_directory}}</h4>
<div class="d-flex justify-space-between">
<span>{{prompt}}</span>
<v-spacer></v-spacer>
<auto-btn></auto-btn>
<option-btn class="ml-4"></option-btn>
<config-btn class="ml-4"></config-btn>
<v-btn color="primary" size="small" @click="select_all" :disabled="$route.path!='/select_scans'" class="ml-4">all</v-btn>
<v-btn color="primary" size="small" @click="back" class="ml-4">back</v-btn>
<v-btn color="primary" size="small" @click="next" :disabled="store.is_auto_bids_running" class="ml-4">{{store.next_step}}</v-btn>
</div>
<br>
<router-view></router-view>
</v-container>
</v-app>
<script type="module" src="/file?path=library/frontend.js"></script>
</body>
</html>