Project

General

Profile

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

haketilo / html / import_frame.html @ 4b59dced

1
<style>
2
  .padding_right {
3
      padding-right: 0.3em;
4
  }
5
</style>
6
<template>
7
  <tr id="import_entry" class="nowrap" data-template="entry">
8
    <td>
9
      <input type="checkbox" style="display: inline;" checked data-template="chbx"></input>
10
      <span data-template="name_span"></span>
11
    </td>
12
    <td class="bold padding_right" data-template="warning"></td>
13
  </tr>
14
</template>
15

    
16
<input id="import_loading_radio" type="radio" name="import_window_content" class="show_next"></input>
17
<span> Loading... </span>
18

    
19
<input id="import_failed_radio" type="radio" name="import_window_content" class="show_next"></input>
20
<div>
21
  <span id="import_errormsg"></span>
22
  <input id="import_errordetail_chbx" type="checkbox" class="show_next"></input>
23
  <pre id="import_errordetail"></pre>
24
  <button id="import_failok_but"> OK </button>
25
</div>
26

    
27
<input id="import_selection_radio" type="radio" name="import_window_content" class="show_next"></input>
28
<div>
29
  <button id="check_all_import_but"> Check all </button>
30
  <button id="uncheck_all_import_but"> Uncheck all </button>
31
  <button id="uncheck_colliding_import_but"> Uncheck existing </button>
32
  <aside id="existing_settings_note">
33
    Settings that would owerwrite existing ones are marked "!".
34
  </aside>
35
  <div id="import_table_wrapper" class="table_wrapper">
36
    <div>
37
      <table>
38
	<tbody id="import_list">
39
	</tbody>
40
      </table>
41
    </div>
42
  </div>
43
  <button id="commit_import_but"> OK </button>
44
  <button id="cancel_import_but"> Cancel </button>
45
</div>
(6-6/11)