File: index.html

package info (click to toggle)
orthanc-dicomweb 0.3%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 888 kB
  • ctags: 1,660
  • sloc: cpp: 11,048; python: 178; sh: 38; makefile: 26
file content (56 lines) | stat: -rw-r--r-- 1,232 bytes parent folder | download | duplicates (6)
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
47
48
49
50
51
52
53
54
55
56
<!doctype html>

<html lang="us">
  <head>
    <meta charset="utf-8" />
    <title>Orthanc DICOMweb Demo</title>
  </head>

  <body>
    <h1>Orthanc DICOMweb Demo</h2>

    <h2>STOW-RS - Upload DICOM file</h2>
    <form id="stow">
      <p>
        DICOM file: 
        <input id="stow-file" type="file" name="datafile">
      </p>

      <input type="submit"></input>
    </form>
    

    <h2>QIDO-RS - Search for series</h2>
    <form id="qido-series">
      <p>
        Patient ID:
        <input type="text" name="PatientID" value="*"></input>
      </p>

      <p>
        Patient Name:
        <input type="text" name="PatientName" value="*"></input>
      </p>

      <p>
        Study Description:
        <input type="text" name="StudyDescription" value="*"></input>
      </p>

      <p>
        Series Description:
        <input type="text" name="SeriesDescription" value="*"></input>
      </p>

      <input type="submit"></input>
    </form>

    <h3>Results</h3>
    <ul id="qido-series-results">
    </ul>

    <script src="jquery.min.js" type="text/javascript"></script>
    <script src="qido-rs.js" type="text/javascript"></script>
    <script src="stow-rs.js" type="text/javascript"></script>
  </body>
</html>