File: import-project-ui.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 (22 lines) | stat: -rw-r--r-- 1,107 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<form id="project-upload-form" method="post" enctype="multipart/form-data" action="command/core/import-project" accept-charset="UTF-8">
  <div class="grid-layout layout-normal"><table role="presentation">
    <tr>
      <td colspan="3" id="or-import-locate"></td>
    <tr>
      <td><label for="project-tar-file-input" id="or-import-file"></label></td>
      <td><input type="file" id="project-tar-file-input" name="project-file"/></td>
      <td><input type="button" id="project-tar-file-delete" size="25" bind="projectTarDelete"/></td>
    </tr>
    <tr>
      <td><label for="project-url-input" id="or-import-url"></label></td>
      <td><input type="text" id="project-url-input" size="25" name="project-url"/></td>
    </tr>
    <tr>
      <td><label for="project-name-input" id="or-import-rename"></label></td>
      <td><input type="text" spellcheck="false" size="25" id="project-name-input" name="project-name" /></td></tr>
    <tr>
      <td></td>
      <td><input type="button" id="import-project-button" class="button button-primary" bind="projectButton"/></td>
    </tr>
  </table></div>
</form>