File: save-schema-dialog.html

package info (click to toggle)
openrefine 3.9.5-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 44,440 kB
  • sloc: javascript: 106,758; java: 91,946; xml: 6,634; sh: 614; makefile: 78; python: 71; sql: 59
file content (24 lines) | stat: -rw-r--r-- 1,159 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<div class="dialog-frame" style="width: 600px;">
  <div class="dialog-header" bind="dialogHeader"></div>
  <form bind="form">
    <div class="dialog-body" bind="dialogBody">
        <div class="save-new-template-dialog-input-group">
          <label for="nameInputId" bind="nameLabel"></label>
          <input type="text" name="name-input" bind="nameInput" id="nameInputId" style="width: 100%" />
        </div>
        <div bind="existingTemplateArea" class="save-new-template-dialog-input-group">
          <label for="templateSelectId" bind="existingTemplateLabel"></label>
          <select name="existing-template-select" bind="templateSelect" id="templateSelectId"></select>
        </div>
    </div>
    <div class="dialog-footer" style="justify-content: space-between">
      <div class="dialog-footer-bg">
        <button class="button" type="button" bind="manageButton"></button>
      </div>
      <div class="dialog-footer-bg">
        <button class="button cancel-button" type="button" bind="cancelButton"></button>
        <button class="button button-primary" type="submit" bind="saveButton"></button>
      </div>
    </div>
  </form>
</div>