Project

General

Profile

Download (1.67 KB) Statistics
| Branch: | Tag: | Revision:

haketilo / html / import_frame.html @ 6247f163

1
<!--
2
    Copyright (C) 2021 Wojtek Kosior
3
    Redistribution terms are gathered in the `copyright' file.
4

    
5
    This is not a standalone page. This file is meant to be imported into other
6
    HTML code.
7
  -->
8
<style>
9
  .padding_right {
10
      padding-right: 0.3em;
11
  }
12
</style>
13
<template>
14
  <tr id="import_entry" class="nowrap" data-template="entry">
15
    <td>
16
      <input type="checkbox" style="display: inline;" checked data-template="chbx"></input>
17
      <span data-template="name_span"></span>
18
    </td>
19
    <td class="bold padding_right" data-template="warning"></td>
20
  </tr>
21
</template>
22

    
23
<input id="import_loading_radio" type="radio" name="import_window_content" class="show_next"></input>
24
<span> Loading... </span>
25

    
26
<input id="import_failed_radio" type="radio" name="import_window_content" class="show_next"></input>
27
<div>
28
  <span id="import_errormsg"></span>
29
  <input id="import_errordetail_chbx" type="checkbox" class="show_next"></input>
30
  <pre id="import_errordetail"></pre>
31
  <button id="import_failok_but"> OK </button>
32
</div>
33

    
34
<input id="import_selection_radio" type="radio" name="import_window_content" class="show_next"></input>
35
<div>
36
  <button id="check_all_import_but"> Check all </button>
37
  <button id="uncheck_all_import_but"> Uncheck all </button>
38
  <button id="uncheck_colliding_import_but"> Uncheck existing </button>
39
  <aside id="existing_settings_note">
40
    Settings that would owerwrite existing ones are marked "!".
41
  </aside>
42
  <div id="import_table_wrapper" class="table_wrapper">
43
    <div>
44
      <table>
45
	<tbody id="import_list">
46
	</tbody>
47
      </table>
48
    </div>
49
  </div>
50
  <button id="commit_import_but"> OK </button>
51
  <button id="cancel_import_but"> Cancel </button>
52
</div>
(9-9/14)