Mercurial > hg > orthanc
annotate OrthancExplorer/explorer.html @ 3041:a6221e2bebd5 Orthanc-1.5.1
Orthanc-1.5.1
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Thu, 20 Dec 2018 10:40:16 +0100 |
parents | 703d1e848907 |
children | 5713952f60c0 9b18c8d4d459 |
rev | line source |
---|---|
0 | 1 <!DOCTYPE html> |
2 | |
3 <html> | |
4 <head> | |
5 <meta charset="utf-8"> | |
6 <meta name="viewport" content="width=device-width, initial-scale=1"> | |
61
d1c511efd6b1
renaming of explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
57
diff
changeset
|
7 <title>Orthanc Explorer</title> |
0 | 8 |
1497
ed3c112a71ea
removal of version numbers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1371
diff
changeset
|
9 <link rel="stylesheet" href="libs/jquery.mobile.min.css" /> |
0 | 10 <link rel="stylesheet" href="libs/jqtree.css" /> |
11 <link rel="stylesheet" href="libs/jquery.mobile.simpledialog.min.css" /> | |
12 <link rel="stylesheet" href="libs/jquery-file-upload/css/style.css" /> | |
13 <link rel="stylesheet" href="libs/jquery-file-upload/css/jquery.fileupload-ui.css" /> | |
14 <link rel="stylesheet" href="libs/slimbox2/slimbox2.css" /> | |
15 | |
1497
ed3c112a71ea
removal of version numbers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1371
diff
changeset
|
16 <script src="libs/jquery.min.js"></script> |
ed3c112a71ea
removal of version numbers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1371
diff
changeset
|
17 <script src="libs/jquery.mobile.min.js"></script> |
0 | 18 <script src="libs/jqm.page.params.js"></script> |
19 <script src="libs/tree.jquery.js"></script> | |
20 <script src="libs/date.js"></script> | |
21 <script src="libs/jquery.mobile.simpledialog2.js"></script> | |
22 <script src="libs/slimbox2.js"></script> | |
125 | 23 <script src="libs/jquery.blockui.js"></script> |
0 | 24 |
25 <!-- https://github.com/blueimp/jQuery-File-Upload/wiki/Basic-plugin --> | |
26 <script src="libs/jquery-file-upload/js/vendor/jquery.ui.widget.js"></script> | |
27 <script src="libs/jquery-file-upload/js/jquery.iframe-transport.js"></script> | |
28 <script src="libs/jquery-file-upload/js/jquery.fileupload.js"></script> | |
29 | |
30 <link rel="stylesheet" href="explorer.css" /> | |
31 <script src="file-upload.js"></script> | |
32 <script src="explorer.js"></script> | |
1371
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
33 <script src="query-retrieve.js"></script> |
1232
f1c01451a8ee
Introspection of plugins, Plugins can extend Orthanc Explorer with custom JavaScript
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1229
diff
changeset
|
34 <script src="../plugins/explorer.js"></script> |
0 | 35 </head> |
36 <body> | |
2873
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
37 <div data-role="page" id="lookup" > |
0 | 38 <div data-role="header" > |
2873
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
39 <h1><span class="orthanc-name"></span>Lookup studies</h1> |
2594
7fbe3f024ac9
new screen in OrthancExplorer to list studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
40 <div data-type="horizontal" data-role="controlgroup" class="ui-btn-left"> |
2873
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
41 <a href="#lookup" data-icon="arrow-r" data-role="button" data-direction="reverse">Lookup</a> |
2594
7fbe3f024ac9
new screen in OrthancExplorer to list studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
42 <a href="#plugins" data-icon="grid" data-role="button" data-direction="reverse">Plugins</a> |
7fbe3f024ac9
new screen in OrthancExplorer to list studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
43 </div> |
1371
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
44 <div data-type="horizontal" data-role="controlgroup" class="ui-btn-right"> |
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
45 <a href="#upload" data-icon="gear" data-role="button">Upload</a> |
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
46 <a href="#query-retrieve" data-icon="search" data-role="button">Query/Retrieve</a> |
2596 | 47 <a href="#jobs" data-icon="refresh" data-role="button" data-direction="reverse">Jobs</a> |
1371
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
48 </div> |
0 | 49 </div> |
50 <div data-role="content"> | |
2873
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
51 <form data-ajax="false" id="lookup-form"> |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
52 <div data-role="fieldcontain"> |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
53 <label for="lookup-patient-id">Patient ID:</label> |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
54 <input type="text" name="lookup-patient-id" id="lookup-patient-id" value="" /> |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
55 </div> |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
56 |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
57 <div data-role="fieldcontain"> |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
58 <label for="lookup-patient-name">Patient Name:</label> |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
59 <input type="text" name="lookup-patient-name" id="lookup-patient-name" value="" /> |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
60 </div> |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
61 |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
62 <div data-role="fieldcontain"> |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
63 <label for="lookup-accession-number">Accession Number:</label> |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
64 <input type="text" name="lookup-accession-number" id="lookup-accession-number" value="" /> |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
65 </div> |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
66 |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
67 <div data-role="fieldcontain"> |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
68 <label for="lookup-study-description">Study Description:</label> |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
69 <input type="text" name="lookup-study-description" id="lookup-study-description" value="" /> |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
70 </div> |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
71 |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
72 <div data-role="fieldcontain"> |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
73 <label for="lookup-study-date">Study Date:</label> |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
74 <select name="lookup-study-date" id="lookup-study-date"> |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
75 </select> |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
76 </div> |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
77 |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
78 <fieldset class="ui-grid-b"> |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
79 <div class="ui-block-a"> |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
80 <a href="#find-patients" data-role="button" data-theme="b" data-direction="reverse">All patients</a> |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
81 </div> |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
82 <div class="ui-block-b"> |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
83 <a href="#find-studies" data-role="button" data-theme="b" data-direction="reverse">All studies</a> |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
84 </div> |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
85 <div class="ui-block-c"> |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
86 <button id="lookup-submit" type="submit" data-theme="e">Do lookup</button> |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
87 </div> |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
88 </fieldset> |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
89 <div> </div> |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
90 </form> |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
91 <div id="lookup-result"> |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
92 <div id="lookup-alert"> |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
93 <div class="ui-bar ui-bar-e"> |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
94 <h3>Warning:</h3> Your lookup led to many results! |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
95 Showing only <span id="lookup-count">?</span> studies to |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
96 avoid performance issue. Please make your query more |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
97 specific, then relaunch the lookup. |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
98 </div> |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
99 <div> </div> |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
100 </div> |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
101 <ul data-role="listview" data-inset="true" data-filter="true"> |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
102 </ul> |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
103 </div> |
0 | 104 </div> |
105 </div> | |
106 | |
2873
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
107 <div data-role="page" id="find-patients" > |
2594
7fbe3f024ac9
new screen in OrthancExplorer to list studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
108 <div data-role="header" > |
2873
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
109 <h1><span class="orthanc-name"></span>All patients</h1> |
2594
7fbe3f024ac9
new screen in OrthancExplorer to list studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
110 <div data-type="horizontal" data-role="controlgroup" class="ui-btn-left"> |
2873
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
111 <a href="#lookup" data-icon="arrow-r" data-role="button" data-direction="reverse">Lookup</a> |
2594
7fbe3f024ac9
new screen in OrthancExplorer to list studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
112 <a href="#plugins" data-icon="grid" data-role="button" data-direction="reverse">Plugins</a> |
7fbe3f024ac9
new screen in OrthancExplorer to list studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
113 </div> |
7fbe3f024ac9
new screen in OrthancExplorer to list studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
114 <div data-type="horizontal" data-role="controlgroup" class="ui-btn-right"> |
7fbe3f024ac9
new screen in OrthancExplorer to list studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
115 <a href="#upload" data-icon="gear" data-role="button">Upload</a> |
7fbe3f024ac9
new screen in OrthancExplorer to list studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
116 <a href="#query-retrieve" data-icon="search" data-role="button">Query/Retrieve</a> |
2619 | 117 <a href="#jobs" data-icon="refresh" data-role="button" data-direction="reverse">Jobs</a> |
2594
7fbe3f024ac9
new screen in OrthancExplorer to list studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
118 </div> |
7fbe3f024ac9
new screen in OrthancExplorer to list studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
119 </div> |
7fbe3f024ac9
new screen in OrthancExplorer to list studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
120 <div data-role="content"> |
2873
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
121 <div id="alert-patients"> |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
122 <div class="ui-bar ui-bar-e"> |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
123 <h3>Warning:</h3> This is a large Orthanc server. Showing |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
124 only <span id="count-patients">?</span> patients to avoid |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
125 performance issue. Make sure to use lookup if targeting |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
126 specific patients! |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
127 </div> |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
128 <div> </div> |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
129 </div> |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
130 <ul id="all-patients" data-role="listview" data-inset="true" data-filter="true"> |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
131 </ul> |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
132 </div> |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
133 </div> |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
134 |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
135 <div data-role="page" id="find-studies" > |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
136 <div data-role="header" > |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
137 <h1><span class="orthanc-name"></span>All studies</h1> |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
138 <div data-type="horizontal" data-role="controlgroup" class="ui-btn-left"> |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
139 <a href="#lookup" data-icon="arrow-r" data-role="button" data-direction="reverse">Lookup</a> |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
140 <a href="#plugins" data-icon="grid" data-role="button" data-direction="reverse">Plugins</a> |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
141 </div> |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
142 <div data-type="horizontal" data-role="controlgroup" class="ui-btn-right"> |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
143 <a href="#upload" data-icon="gear" data-role="button">Upload</a> |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
144 <a href="#query-retrieve" data-icon="search" data-role="button">Query/Retrieve</a> |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
145 <a href="#jobs" data-icon="refresh" data-role="button" data-direction="reverse">Jobs</a> |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
146 </div> |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
147 </div> |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
148 <div data-role="content"> |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
149 <div id="alert-studies"> |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
150 <div class="ui-bar ui-bar-e"> |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
151 <h3>Warning:</h3> This is a large Orthanc server. Showing |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
152 only <span id="count-studies">?</span> studies to avoid |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
153 performance issue. Make sure to use lookup if targeting |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
154 specific studies! |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
155 </div> |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
156 <div> </div> |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
157 </div> |
2594
7fbe3f024ac9
new screen in OrthancExplorer to list studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
158 <ul id="all-studies" data-role="listview" data-inset="true" data-filter="true"> |
7fbe3f024ac9
new screen in OrthancExplorer to list studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
159 </ul> |
7fbe3f024ac9
new screen in OrthancExplorer to list studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
160 </div> |
7fbe3f024ac9
new screen in OrthancExplorer to list studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
161 </div> |
7fbe3f024ac9
new screen in OrthancExplorer to list studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
162 |
7fbe3f024ac9
new screen in OrthancExplorer to list studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
163 <div data-role="page" id="upload"> |
0 | 164 <div data-role="header" > |
151 | 165 <h1><span class="orthanc-name"></span>Upload DICOM files</h1> |
2594
7fbe3f024ac9
new screen in OrthancExplorer to list studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
166 <div data-type="horizontal" data-role="controlgroup" class="ui-btn-left"> |
2873
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
167 <a href="#lookup" data-icon="arrow-r" data-role="button" data-direction="reverse">Lookup</a> |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
168 <a href="#plugins" data-icon="grid" data-role="button" data-direction="reverse">Plugins</a> |
2594
7fbe3f024ac9
new screen in OrthancExplorer to list studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
169 </div> |
0 | 170 </div> |
171 <div data-role="content"> | |
172 <div style="display:none"> | |
83 | 173 <input id="fileupload" type="file" name="files[]" data-url="../instances/" multiple> |
0 | 174 </div> |
175 <p> | |
176 <ul data-role="listview" data-inset="true"> | |
177 <li data-icon="arrow-r" data-theme="e"><a href="#" id="upload-button">Start the upload</a></li> | |
178 <!--li data-icon="gear" data-theme="e"><a href="#" id="upload-abort" class="ui-disabled">Abort the current upload</a></li--> | |
179 <li data-icon="delete" data-theme="e"><a href="#" id="upload-clear">Clear the pending uploads</a></li> | |
180 </ul> | |
181 <div id="progress" class="ui-corner-all"> | |
182 <span class="bar ui-corner-all"></span> | |
183 <div class="label"></div> | |
184 </div> | |
185 </p> | |
186 <ul id="upload-list" data-role="listview" data-inset="true"> | |
187 <li data-role="list-divider">Drag and drop DICOM files here</li> | |
188 </ul> | |
189 </div> | |
190 </div> | |
191 | |
192 <div data-role="page" id="patient" > | |
193 <div data-role="header" > | |
152
4829c054751a
improved navigation in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
151
diff
changeset
|
194 <h1><span class="orthanc-name"></span>Patient</h1> |
2594
7fbe3f024ac9
new screen in OrthancExplorer to list studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
195 <div data-type="horizontal" data-role="controlgroup" class="ui-btn-left"> |
2873
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
196 <a href="#lookup" data-icon="arrow-r" data-role="button" data-direction="reverse">Lookup</a> |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
197 <a href="#plugins" data-icon="grid" data-role="button" data-direction="reverse">Plugins</a> |
2594
7fbe3f024ac9
new screen in OrthancExplorer to list studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
198 </div> |
1371
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
199 <div data-type="horizontal" data-role="controlgroup" class="ui-btn-right"> |
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
200 <a href="#upload" data-icon="gear" data-role="button">Upload</a> |
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
201 <a href="#query-retrieve" data-icon="search" data-role="button">Query/Retrieve</a> |
2619 | 202 <a href="#jobs" data-icon="refresh" data-role="button" data-direction="reverse">Jobs</a> |
1371
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
203 </div> |
0 | 204 </div> |
205 <div data-role="content"> | |
206 <div class="ui-grid-a"> | |
207 <div class="ui-block-a" style="width:30%"> | |
208 <div style="padding-right:10px"> | |
209 <ul data-role="listview" data-inset="true" data-theme="a" id="patient-info"> | |
210 </ul> | |
211 <p> | |
274
f2286c741109
patient protection in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
250
diff
changeset
|
212 <div class="switch-container"> |
f2286c741109
patient protection in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
250
diff
changeset
|
213 <select name="protection" id="protection" data-role="slider"> |
f2286c741109
patient protection in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
250
diff
changeset
|
214 <option value="off">Unprotected</option> |
f2286c741109
patient protection in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
250
diff
changeset
|
215 <option value="on">Protected</option> |
f2286c741109
patient protection in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
250
diff
changeset
|
216 </select> |
f2286c741109
patient protection in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
250
diff
changeset
|
217 </div> |
0 | 218 </p> |
442 | 219 <ul data-role="listview" data-inset="true" data-theme="d" data-divider-theme="c"> |
220 <li data-role="list-divider">Interact</li> | |
221 <li data-icon="delete"><a href="#" id="patient-delete">Delete this patient</a></li> | |
484
b8ace6fc1d1f
preparation for handling Orthanc peers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
443
diff
changeset
|
222 <li data-icon="forward"><a href="#" id="patient-store">Send to remote modality</a></li> |
442 | 223 <li data-icon="star"><a href="#" id="patient-anonymize">Anonymize</a></li> |
224 </ul> | |
225 | |
226 <ul data-role="listview" data-inset="true" data-theme="d" data-divider-theme="c"> | |
227 <li data-role="list-divider">Access</li> | |
443
be93b666ed79
link anonymized to original resource in OrthancExplorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
442
diff
changeset
|
228 <li data-icon="info" data-theme="e" style="display:none"> |
be93b666ed79
link anonymized to original resource in OrthancExplorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
442
diff
changeset
|
229 <a href="#" id="patient-anonymized-from">Before anonymization</a> |
be93b666ed79
link anonymized to original resource in OrthancExplorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
442
diff
changeset
|
230 </li> |
515
a8be42bcf2bb
Link from modified to original resource in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
485
diff
changeset
|
231 <li data-icon="info" data-theme="e" style="display:none"> |
a8be42bcf2bb
Link from modified to original resource in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
485
diff
changeset
|
232 <a href="#" id="patient-modified-from">Before modification</a> |
a8be42bcf2bb
Link from modified to original resource in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
485
diff
changeset
|
233 </li> |
442 | 234 <li data-icon="gear"><a href="#" id="patient-archive">Download ZIP</a></li> |
1188
2e11c3353356
download dicomdir in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
515
diff
changeset
|
235 <li data-icon="gear"><a href="#" id="patient-media">Download DICOMDIR</a></li> |
442 | 236 </ul> |
0 | 237 </div> |
238 </div> | |
239 <div class="ui-block-b" style="width:70%"> | |
240 <div style="padding:10px"> | |
241 <ul id="list-studies" data-role="listview" data-inset="true" data-filter="true"> | |
242 </ul> | |
243 </div> | |
244 </div> | |
245 </div> | |
246 </div> | |
247 </div> | |
248 | |
249 <div data-role="page" id="study"> | |
250 <div data-role="header"> | |
152
4829c054751a
improved navigation in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
151
diff
changeset
|
251 <h1> |
4829c054751a
improved navigation in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
151
diff
changeset
|
252 <span class="orthanc-name"></span> |
4829c054751a
improved navigation in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
151
diff
changeset
|
253 <a href="#" class="patient-link">Patient</a> » |
4829c054751a
improved navigation in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
151
diff
changeset
|
254 Study |
4829c054751a
improved navigation in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
151
diff
changeset
|
255 </h1> |
2594
7fbe3f024ac9
new screen in OrthancExplorer to list studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
256 <div data-type="horizontal" data-role="controlgroup" class="ui-btn-left"> |
2873
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
257 <a href="#lookup" data-icon="arrow-r" data-role="button" data-direction="reverse">Lookup</a> |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
258 <a href="#plugins" data-icon="grid" data-role="button" data-direction="reverse">Plugins</a> |
2594
7fbe3f024ac9
new screen in OrthancExplorer to list studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
259 </div> |
1371
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
260 <div data-type="horizontal" data-role="controlgroup" class="ui-btn-right"> |
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
261 <a href="#upload" data-icon="gear" data-role="button">Upload</a> |
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
262 <a href="#query-retrieve" data-icon="search" data-role="button">Query/Retrieve</a> |
2619 | 263 <a href="#jobs" data-icon="refresh" data-role="button" data-direction="reverse">Jobs</a> |
1371
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
264 </div> |
0 | 265 </div> |
266 <div data-role="content"> | |
267 <div class="ui-grid-a"> | |
268 <div class="ui-block-a" style="width:30%"> | |
269 <div style="padding-right:10px"> | |
270 <ul data-role="listview" data-inset="true" data-theme="a" id="study-info"> | |
271 </ul> | |
442 | 272 |
273 <ul data-role="listview" data-inset="true" data-theme="d" data-divider-theme="c"> | |
274 <li data-role="list-divider">Interact</li> | |
275 <li data-icon="delete"><a href="#" id="study-delete">Delete this study</a></li> | |
276 <li data-icon="forward"><a href="#" id="study-store">Send to DICOM modality</a></li> | |
277 <li data-icon="star"><a href="#" id="study-anonymize">Anonymize</a></li> | |
278 </ul> | |
279 | |
280 <ul data-role="listview" data-inset="true" data-theme="d" data-divider-theme="c"> | |
281 <li data-role="list-divider">Access</li> | |
443
be93b666ed79
link anonymized to original resource in OrthancExplorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
442
diff
changeset
|
282 <li data-icon="info" data-theme="e" style="display:none"> |
be93b666ed79
link anonymized to original resource in OrthancExplorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
442
diff
changeset
|
283 <a href="#" id="study-anonymized-from">Before anonymization</a> |
be93b666ed79
link anonymized to original resource in OrthancExplorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
442
diff
changeset
|
284 </li> |
515
a8be42bcf2bb
Link from modified to original resource in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
485
diff
changeset
|
285 <li data-icon="info" data-theme="e" style="display:none"> |
a8be42bcf2bb
Link from modified to original resource in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
485
diff
changeset
|
286 <a href="#" id="study-modified-from">Before modification</a> |
a8be42bcf2bb
Link from modified to original resource in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
485
diff
changeset
|
287 </li> |
442 | 288 <li data-icon="gear"><a href="#" id="study-archive">Download ZIP</a></li> |
1188
2e11c3353356
download dicomdir in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
515
diff
changeset
|
289 <li data-icon="gear"><a href="#" id="study-media">Download DICOMDIR</a></li> |
442 | 290 </ul> |
0 | 291 </div> |
292 </div> | |
293 <div class="ui-block-b" style="width:70%"> | |
294 <div style="padding:10px"> | |
295 <ul id="list-series" data-role="listview" data-inset="true" data-filter="true"> | |
296 </ul> | |
297 </div> | |
298 </div> | |
299 </div> | |
300 </div> | |
301 </div> | |
302 | |
303 <div data-role="page" id="series"> | |
304 <div data-role="header"> | |
152
4829c054751a
improved navigation in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
151
diff
changeset
|
305 <h1> |
4829c054751a
improved navigation in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
151
diff
changeset
|
306 <span class="orthanc-name"></span> |
4829c054751a
improved navigation in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
151
diff
changeset
|
307 <a href="#" class="patient-link">Patient</a> » |
4829c054751a
improved navigation in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
151
diff
changeset
|
308 <a href="#" class="study-link">Study</a> » |
4829c054751a
improved navigation in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
151
diff
changeset
|
309 Series |
4829c054751a
improved navigation in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
151
diff
changeset
|
310 </h1> |
2594
7fbe3f024ac9
new screen in OrthancExplorer to list studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
311 <div data-type="horizontal" data-role="controlgroup" class="ui-btn-left"> |
2873
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
312 <a href="#lookup" data-icon="arrow-r" data-role="button" data-direction="reverse">Lookup</a> |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
313 <a href="#plugins" data-icon="grid" data-role="button" data-direction="reverse">Plugins</a> |
2594
7fbe3f024ac9
new screen in OrthancExplorer to list studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
314 </div> |
1371
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
315 <div data-type="horizontal" data-role="controlgroup" class="ui-btn-right"> |
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
316 <a href="#upload" data-icon="gear" data-role="button">Upload</a> |
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
317 <a href="#query-retrieve" data-icon="search" data-role="button">Query/Retrieve</a> |
2619 | 318 <a href="#jobs" data-icon="refresh" data-role="button" data-direction="reverse">Jobs</a> |
1371
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
319 </div> |
0 | 320 </div> |
321 <div data-role="content"> | |
322 <div class="ui-grid-a"> | |
323 <div class="ui-block-a" style="width:30%"> | |
324 <div style="padding-right:10px"> | |
442 | 325 <ul data-role="listview" data-inset="true" data-theme="a" id="series-info"> |
0 | 326 </ul> |
442 | 327 |
328 <ul data-role="listview" data-inset="true" data-theme="d" data-divider-theme="c"> | |
329 <li data-role="list-divider">Interact</li> | |
330 <li data-icon="delete"><a href="#" id="series-delete">Delete this series</a></li> | |
331 <li data-icon="forward"><a href="#" id="series-store">Send to DICOM modality</a></li> | |
332 <li data-icon="star"><a href="#" id="series-anonymize">Anonymize</a></li> | |
333 </ul> | |
334 | |
335 <ul data-role="listview" data-inset="true" data-theme="d" data-divider-theme="c"> | |
336 <li data-role="list-divider">Access</li> | |
443
be93b666ed79
link anonymized to original resource in OrthancExplorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
442
diff
changeset
|
337 <li data-icon="info" data-theme="e" style="display:none"> |
be93b666ed79
link anonymized to original resource in OrthancExplorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
442
diff
changeset
|
338 <a href="#" id="series-anonymized-from">Before anonymization</a> |
be93b666ed79
link anonymized to original resource in OrthancExplorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
442
diff
changeset
|
339 </li> |
515
a8be42bcf2bb
Link from modified to original resource in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
485
diff
changeset
|
340 <li data-icon="info" data-theme="e" style="display:none"> |
a8be42bcf2bb
Link from modified to original resource in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
485
diff
changeset
|
341 <a href="#" id="series-modified-from">Before modification</a> |
a8be42bcf2bb
Link from modified to original resource in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
485
diff
changeset
|
342 </li> |
442 | 343 <li data-icon="search"><a href="#" id="series-preview">Preview this series</a></li> |
344 <li data-icon="gear"><a href="#" id="series-archive">Download ZIP</a></li> | |
1188
2e11c3353356
download dicomdir in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
515
diff
changeset
|
345 <li data-icon="gear"><a href="#" id="series-media">Download DICOMDIR</a></li> |
442 | 346 </ul> |
0 | 347 </div> |
348 </div> | |
349 <div class="ui-block-b" style="width:70%"> | |
350 <div style="padding:10px"> | |
351 <ul id="list-instances" data-role="listview" data-inset="true" data-filter="true"> | |
352 </ul> | |
353 </div> | |
354 </div> | |
355 </div> | |
356 </div> | |
357 </div> | |
358 | |
359 <div data-role="page" id="instance"> | |
360 <div data-role="header"> | |
152
4829c054751a
improved navigation in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
151
diff
changeset
|
361 <h1> |
4829c054751a
improved navigation in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
151
diff
changeset
|
362 <span class="orthanc-name"></span> |
4829c054751a
improved navigation in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
151
diff
changeset
|
363 <a href="#" class="patient-link">Patient</a> » |
4829c054751a
improved navigation in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
151
diff
changeset
|
364 <a href="#" class="study-link">Study</a> » |
4829c054751a
improved navigation in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
151
diff
changeset
|
365 <a href="#" class="series-link">Series</a> » |
4829c054751a
improved navigation in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
151
diff
changeset
|
366 Instance |
4829c054751a
improved navigation in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
151
diff
changeset
|
367 </h1> |
2594
7fbe3f024ac9
new screen in OrthancExplorer to list studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
368 <div data-type="horizontal" data-role="controlgroup" class="ui-btn-left"> |
2873
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
369 <a href="#lookup" data-icon="arrow-r" data-role="button" data-direction="reverse">Lookup</a> |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
370 <a href="#plugins" data-icon="grid" data-role="button" data-direction="reverse">Plugins</a> |
2594
7fbe3f024ac9
new screen in OrthancExplorer to list studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
371 </div> |
1371
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
372 <div data-type="horizontal" data-role="controlgroup" class="ui-btn-right"> |
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
373 <a href="#upload" data-icon="gear" data-role="button">Upload</a> |
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
374 <a href="#query-retrieve" data-icon="search" data-role="button">Query/Retrieve</a> |
2619 | 375 <a href="#jobs" data-icon="refresh" data-role="button" data-direction="reverse">Jobs</a> |
1371
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
376 </div> |
0 | 377 </div> |
378 <div data-role="content"> | |
379 <div class="ui-grid-a"> | |
380 <div class="ui-block-a" style="width:30%"> | |
381 <div style="padding-right:10px"> | |
382 <ul data-role="listview" data-inset="true" data-theme="a" id="instance-info"> | |
383 </ul> | |
442 | 384 |
385 <ul data-role="listview" data-inset="true" data-theme="d" data-divider-theme="c"> | |
386 <li data-role="list-divider">Interact</li> | |
387 <li data-icon="delete"><a href="#" id="instance-delete">Delete this instance</a></li> | |
388 <li data-icon="forward"><a href="#" id="instance-store">Send to DICOM modality</a></li> | |
389 </ul> | |
390 | |
391 <ul data-role="listview" data-inset="true" data-theme="d" data-divider-theme="c"> | |
392 <li data-role="list-divider">Access</li> | |
515
a8be42bcf2bb
Link from modified to original resource in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
485
diff
changeset
|
393 <li data-icon="info" data-theme="e" style="display:none"> |
a8be42bcf2bb
Link from modified to original resource in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
485
diff
changeset
|
394 <a href="#" id="instance-anonymized-from">Before anonymization</a> |
a8be42bcf2bb
Link from modified to original resource in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
485
diff
changeset
|
395 </li> |
a8be42bcf2bb
Link from modified to original resource in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
485
diff
changeset
|
396 <li data-icon="info" data-theme="e" style="display:none"> |
a8be42bcf2bb
Link from modified to original resource in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
485
diff
changeset
|
397 <a href="#" id="instance-modified-from">Before modification</a> |
a8be42bcf2bb
Link from modified to original resource in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
485
diff
changeset
|
398 </li> |
442 | 399 <li data-icon="arrow-d"><a href="#" id="instance-download-dicom">Download the DICOM file</a></li> |
400 <li data-icon="arrow-d"><a href="#" id="instance-download-json">Download the JSON file</a></li> | |
401 <li data-icon="search"><a href="#" id="instance-preview">Preview the instance</a></li> | |
402 </ul> | |
0 | 403 </div> |
404 </div> | |
405 <div class="ui-block-b" style="width:70%"> | |
406 <div style="padding:10px"> | |
407 <div class="ui-body ui-body-b"> | |
408 <h1>DICOM Tags</h1> | |
35
f6d12037f886
full json vs. simplified json
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
409 <p align="right"> |
f6d12037f886
full json vs. simplified json
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
410 <input type="checkbox" id="show-tag-name" checked="checked" class="custom" data-mini="true" /> |
f6d12037f886
full json vs. simplified json
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
411 <label for="show-tag-name">Show tag description</label> |
f6d12037f886
full json vs. simplified json
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
412 </p> |
0 | 413 <div id="dicom-tree"></div> |
414 </div> | |
415 </div> | |
416 </div> | |
417 </div> | |
418 </div> | |
419 </div> | |
420 | |
1232
f1c01451a8ee
Introspection of plugins, Plugins can extend Orthanc Explorer with custom JavaScript
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1229
diff
changeset
|
421 <div data-role="page" id="plugins" > |
f1c01451a8ee
Introspection of plugins, Plugins can extend Orthanc Explorer with custom JavaScript
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1229
diff
changeset
|
422 <div data-role="header" > |
f1c01451a8ee
Introspection of plugins, Plugins can extend Orthanc Explorer with custom JavaScript
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1229
diff
changeset
|
423 <h1><span class="orthanc-name"></span>Plugins</h1> |
2594
7fbe3f024ac9
new screen in OrthancExplorer to list studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
424 <div data-type="horizontal" data-role="controlgroup" class="ui-btn-left"> |
2873
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
425 <a href="#lookup" data-icon="arrow-r" data-role="button" data-direction="reverse">Lookup</a> |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
426 <a href="#plugins" data-icon="grid" data-role="button" data-direction="reverse">Plugins</a> |
2594
7fbe3f024ac9
new screen in OrthancExplorer to list studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
427 </div> |
1232
f1c01451a8ee
Introspection of plugins, Plugins can extend Orthanc Explorer with custom JavaScript
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1229
diff
changeset
|
428 </div> |
f1c01451a8ee
Introspection of plugins, Plugins can extend Orthanc Explorer with custom JavaScript
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1229
diff
changeset
|
429 <div data-role="content"> |
f1c01451a8ee
Introspection of plugins, Plugins can extend Orthanc Explorer with custom JavaScript
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1229
diff
changeset
|
430 <ul id="all-plugins" data-role="listview" data-inset="true" data-filter="true"> |
f1c01451a8ee
Introspection of plugins, Plugins can extend Orthanc Explorer with custom JavaScript
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1229
diff
changeset
|
431 </ul> |
f1c01451a8ee
Introspection of plugins, Plugins can extend Orthanc Explorer with custom JavaScript
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1229
diff
changeset
|
432 </div> |
f1c01451a8ee
Introspection of plugins, Plugins can extend Orthanc Explorer with custom JavaScript
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1229
diff
changeset
|
433 </div> |
f1c01451a8ee
Introspection of plugins, Plugins can extend Orthanc Explorer with custom JavaScript
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1229
diff
changeset
|
434 |
1371
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
435 <div data-role="page" id="query-retrieve" > |
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
436 <div data-role="header" > |
2119
e0517f25919e
Improved robustness of Orthanc Explorer wrt. query/retrieve (maybe fix issue 24)
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1501
diff
changeset
|
437 <h1><span class="orthanc-name"></span>DICOM Query/Retrieve (1/4)</h1> |
2594
7fbe3f024ac9
new screen in OrthancExplorer to list studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
438 <div data-type="horizontal" data-role="controlgroup" class="ui-btn-left"> |
2873
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
439 <a href="#lookup" data-icon="arrow-r" data-role="button" data-direction="reverse">Lookup</a> |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
440 <a href="#plugins" data-icon="grid" data-role="button" data-direction="reverse">Plugins</a> |
2594
7fbe3f024ac9
new screen in OrthancExplorer to list studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
441 </div> |
1371
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
442 </div> |
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
443 <div data-role="content"> |
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
444 <form data-ajax="false"> |
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
445 <div data-role="fieldcontain"> |
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
446 <label for="qr-server">DICOM server:</label> |
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
447 <select name="qr-server" id="qr-server"> |
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
448 </select> |
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
449 </div> |
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
450 |
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
451 <div data-role="fieldcontain" id="qr-fields"> |
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
452 <fieldset data-role="controlgroup"> |
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
453 <legend>Field of interest:</legend> |
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
454 <input type="radio" name="qr-field" id="qr-patient-id" value="PatientID" checked="checked" /> |
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
455 <label for="qr-patient-id">Patient ID</label> |
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
456 <input type="radio" name="qr-field" id="qr-patient-name" value="PatientName" /> |
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
457 <label for="qr-patient-name">Patient Name</label> |
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
458 <input type="radio" name="qr-field" id="qr-accession-number" value="AccessionNumber" /> |
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
459 <label for="qr-accession-number">Accession Number</label> |
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
460 <input type="radio" name="qr-field" id="qr-study-description" value="StudyDescription" /> |
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
461 <label for="qr-study-description">Study Description</label> |
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
462 </fieldset> |
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
463 </div> |
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
464 |
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
465 <div data-role="fieldcontain"> |
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
466 <label for="qr-value">Value for this field:</label> |
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
467 <input type="text" name="qr-value" id="qr-value" value="*" /> |
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
468 </div> |
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
469 |
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
470 <div data-role="fieldcontain"> |
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
471 <label for="qr-date">Study date:</label> |
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
472 <select name="qr-date" id="qr-date"> |
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
473 </select> |
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
474 </div> |
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
475 |
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
476 <div data-role="fieldcontain" id="qr-modalities"> |
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
477 <div data-role="fieldcontain"> |
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
478 <fieldset data-role="controlgroup" data-type="horizontal"> |
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
479 <legend>Modalities:</legend> |
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
480 <input type="checkbox" name="CR" id="qr-cr" class="custom" /> <label for="qr-cr">CR</label> |
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
481 <input type="checkbox" name="CT" id="qr-ct" class="custom" /> <label for="qr-ct">CT</label> |
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
482 <input type="checkbox" name="MR" id="qr-mr" class="custom" /> <label for="qr-mr">MR</label> |
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
483 <input type="checkbox" name="NM" id="qr-nm" class="custom" /> <label for="qr-nm">NM</label> |
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
484 <input type="checkbox" name="PT" id="qr-pt" class="custom" /> <label for="qr-pt">PT</label> |
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
485 <input type="checkbox" name="US" id="qr-us" class="custom" /> <label for="qr-us">US</label> |
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
486 <input type="checkbox" name="XA" id="qr-xa" class="custom" /> <label for="qr-xa">XA</label> |
2293
9d87f308d35c
Query/retrieve: Added button for "DR" modality
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2119
diff
changeset
|
487 <input type="checkbox" name="DR" id="qr-dr" class="custom" /> <label for="qr-dr">DR</label> |
2816
567d1be0849e
Query/retrieve: Added button for "DX" modality
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2631
diff
changeset
|
488 <input type="checkbox" name="DX" id="qr-dx" class="custom" /> <label for="qr-dx">DX</label> |
1371
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
489 </fieldset> |
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
490 </div> |
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
491 </div> |
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
492 |
1501
aaf368280f5a
C-Echo testing can be triggered from Orthanc Explorer (in the query/retrieve page)
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1498
diff
changeset
|
493 <fieldset class="ui-grid-a"> |
aaf368280f5a
C-Echo testing can be triggered from Orthanc Explorer (in the query/retrieve page)
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1498
diff
changeset
|
494 <div class="ui-block-a"> |
aaf368280f5a
C-Echo testing can be triggered from Orthanc Explorer (in the query/retrieve page)
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1498
diff
changeset
|
495 <button id="qr-echo" data-theme="a">Test Echo</button> |
aaf368280f5a
C-Echo testing can be triggered from Orthanc Explorer (in the query/retrieve page)
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1498
diff
changeset
|
496 </div> |
aaf368280f5a
C-Echo testing can be triggered from Orthanc Explorer (in the query/retrieve page)
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1498
diff
changeset
|
497 <div class="ui-block-b"> |
aaf368280f5a
C-Echo testing can be triggered from Orthanc Explorer (in the query/retrieve page)
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1498
diff
changeset
|
498 <button id="qr-submit" type="submit" data-theme="b">Search studies</button> |
aaf368280f5a
C-Echo testing can be triggered from Orthanc Explorer (in the query/retrieve page)
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1498
diff
changeset
|
499 </div> |
aaf368280f5a
C-Echo testing can be triggered from Orthanc Explorer (in the query/retrieve page)
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1498
diff
changeset
|
500 </fieldset> |
1371
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
501 </form> |
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
502 </div> |
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
503 </div> |
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
504 |
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
505 |
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
506 <div data-role="page" id="query-retrieve-2" > |
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
507 <div data-role="header" > |
2119
e0517f25919e
Improved robustness of Orthanc Explorer wrt. query/retrieve (maybe fix issue 24)
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1501
diff
changeset
|
508 <h1><span class="orthanc-name"></span>DICOM Query/Retrieve (2/4)</h1> |
2594
7fbe3f024ac9
new screen in OrthancExplorer to list studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
509 <div data-type="horizontal" data-role="controlgroup" class="ui-btn-left"> |
2873
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
510 <a href="#lookup" data-icon="arrow-r" data-role="button" data-direction="reverse">Lookup</a> |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
511 <a href="#plugins" data-icon="grid" data-role="button" data-direction="reverse">Plugins</a> |
2594
7fbe3f024ac9
new screen in OrthancExplorer to list studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
512 </div> |
1371
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
513 <a href="#query-retrieve" data-icon="search" class="ui-btn-right" data-direction="reverse">Query/Retrieve</a> |
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
514 </div> |
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
515 <div data-role="content"> |
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
516 <ul data-role="listview" data-inset="true" data-filter="true" data-split-icon="arrow-d" data-split-theme="b"> |
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
517 </ul> |
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
518 </div> |
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
519 </div> |
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
520 |
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
521 |
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
522 <div data-role="page" id="query-retrieve-3" > |
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
523 <div data-role="header" > |
2119
e0517f25919e
Improved robustness of Orthanc Explorer wrt. query/retrieve (maybe fix issue 24)
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1501
diff
changeset
|
524 <h1><span class="orthanc-name"></span>DICOM Query/Retrieve (3/4)</h1> |
2594
7fbe3f024ac9
new screen in OrthancExplorer to list studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
525 <div data-type="horizontal" data-role="controlgroup" class="ui-btn-left"> |
2873
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
526 <a href="#lookup" data-icon="arrow-r" data-role="button" data-direction="reverse">Lookup</a> |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
527 <a href="#plugins" data-icon="grid" data-role="button" data-direction="reverse">Plugins</a> |
2594
7fbe3f024ac9
new screen in OrthancExplorer to list studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
528 </div> |
1371
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
529 <a href="#query-retrieve" data-icon="search" class="ui-btn-right" data-direction="reverse">Query/Retrieve</a> |
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
530 </div> |
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
531 <div data-role="content"> |
2119
e0517f25919e
Improved robustness of Orthanc Explorer wrt. query/retrieve (maybe fix issue 24)
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1501
diff
changeset
|
532 <ul data-role="listview" data-inset="true" data-filter="true"> |
1371
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
533 </ul> |
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
534 </div> |
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
535 </div> |
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
536 |
1232
f1c01451a8ee
Introspection of plugins, Plugins can extend Orthanc Explorer with custom JavaScript
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1229
diff
changeset
|
537 |
2119
e0517f25919e
Improved robustness of Orthanc Explorer wrt. query/retrieve (maybe fix issue 24)
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1501
diff
changeset
|
538 <div data-role="page" id="query-retrieve-4" > |
e0517f25919e
Improved robustness of Orthanc Explorer wrt. query/retrieve (maybe fix issue 24)
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1501
diff
changeset
|
539 <div data-role="header" > |
e0517f25919e
Improved robustness of Orthanc Explorer wrt. query/retrieve (maybe fix issue 24)
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1501
diff
changeset
|
540 <h1><span class="orthanc-name"></span>DICOM Query/Retrieve (4/4)</h1> |
2594
7fbe3f024ac9
new screen in OrthancExplorer to list studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
541 <div data-type="horizontal" data-role="controlgroup" class="ui-btn-left"> |
2873
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
542 <a href="#lookup" data-icon="arrow-r" data-role="button" data-direction="reverse">Lookup</a> |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
543 <a href="#plugins" data-icon="grid" data-role="button" data-direction="reverse">Plugins</a> |
2594
7fbe3f024ac9
new screen in OrthancExplorer to list studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
544 </div> |
2119
e0517f25919e
Improved robustness of Orthanc Explorer wrt. query/retrieve (maybe fix issue 24)
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1501
diff
changeset
|
545 <a href="#query-retrieve" data-icon="search" class="ui-btn-right" data-direction="reverse">Query/Retrieve</a> |
e0517f25919e
Improved robustness of Orthanc Explorer wrt. query/retrieve (maybe fix issue 24)
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1501
diff
changeset
|
546 </div> |
e0517f25919e
Improved robustness of Orthanc Explorer wrt. query/retrieve (maybe fix issue 24)
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1501
diff
changeset
|
547 |
e0517f25919e
Improved robustness of Orthanc Explorer wrt. query/retrieve (maybe fix issue 24)
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1501
diff
changeset
|
548 <div data-role="content"> |
e0517f25919e
Improved robustness of Orthanc Explorer wrt. query/retrieve (maybe fix issue 24)
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1501
diff
changeset
|
549 <form data-ajax="false" id="retrieve-form"> |
e0517f25919e
Improved robustness of Orthanc Explorer wrt. query/retrieve (maybe fix issue 24)
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1501
diff
changeset
|
550 <div data-role="fieldcontain"> |
e0517f25919e
Improved robustness of Orthanc Explorer wrt. query/retrieve (maybe fix issue 24)
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1501
diff
changeset
|
551 <label for="retrieve-target">Target AET:</label> |
e0517f25919e
Improved robustness of Orthanc Explorer wrt. query/retrieve (maybe fix issue 24)
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1501
diff
changeset
|
552 <input type="text" name="retrieve-target" id="retrieve-target"></input> |
e0517f25919e
Improved robustness of Orthanc Explorer wrt. query/retrieve (maybe fix issue 24)
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1501
diff
changeset
|
553 </div> |
e0517f25919e
Improved robustness of Orthanc Explorer wrt. query/retrieve (maybe fix issue 24)
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1501
diff
changeset
|
554 |
e0517f25919e
Improved robustness of Orthanc Explorer wrt. query/retrieve (maybe fix issue 24)
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1501
diff
changeset
|
555 <fieldset class="ui-grid-b"> |
e0517f25919e
Improved robustness of Orthanc Explorer wrt. query/retrieve (maybe fix issue 24)
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1501
diff
changeset
|
556 <div class="ui-block-a"></div> |
e0517f25919e
Improved robustness of Orthanc Explorer wrt. query/retrieve (maybe fix issue 24)
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1501
diff
changeset
|
557 <div class="ui-block-b"> |
e0517f25919e
Improved robustness of Orthanc Explorer wrt. query/retrieve (maybe fix issue 24)
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1501
diff
changeset
|
558 <button id="retrieve-submit" type="submit" data-theme="b">Retrieve</button> |
e0517f25919e
Improved robustness of Orthanc Explorer wrt. query/retrieve (maybe fix issue 24)
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1501
diff
changeset
|
559 </div> |
e0517f25919e
Improved robustness of Orthanc Explorer wrt. query/retrieve (maybe fix issue 24)
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1501
diff
changeset
|
560 <div class="ui-block-c"></div> |
e0517f25919e
Improved robustness of Orthanc Explorer wrt. query/retrieve (maybe fix issue 24)
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1501
diff
changeset
|
561 </fieldset> |
e0517f25919e
Improved robustness of Orthanc Explorer wrt. query/retrieve (maybe fix issue 24)
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1501
diff
changeset
|
562 </form> |
e0517f25919e
Improved robustness of Orthanc Explorer wrt. query/retrieve (maybe fix issue 24)
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1501
diff
changeset
|
563 </div> |
e0517f25919e
Improved robustness of Orthanc Explorer wrt. query/retrieve (maybe fix issue 24)
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1501
diff
changeset
|
564 </div> |
e0517f25919e
Improved robustness of Orthanc Explorer wrt. query/retrieve (maybe fix issue 24)
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1501
diff
changeset
|
565 |
2573
3372c5255333
StoreScuJob, Orthanc Explorer for jobs
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
566 |
3372c5255333
StoreScuJob, Orthanc Explorer for jobs
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
567 <div data-role="page" id="jobs" > |
3372c5255333
StoreScuJob, Orthanc Explorer for jobs
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
568 <div data-role="header" > |
3372c5255333
StoreScuJob, Orthanc Explorer for jobs
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
569 <h1><span class="orthanc-name"></span>Jobs</h1> |
2597 | 570 <div data-type="horizontal" data-role="controlgroup" class="ui-btn-left"> |
2873
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
571 <a href="#lookup" data-icon="arrow-r" data-role="button" data-direction="reverse">Lookup</a> |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
572 <a href="#plugins" data-icon="grid" data-role="button" data-direction="reverse">Plugins</a> |
2597 | 573 </div> |
2573
3372c5255333
StoreScuJob, Orthanc Explorer for jobs
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
574 </div> |
3372c5255333
StoreScuJob, Orthanc Explorer for jobs
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
575 <div data-role="content"> |
3372c5255333
StoreScuJob, Orthanc Explorer for jobs
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
576 <ul id="all-jobs" data-role="listview" data-inset="true" data-filter="true"> |
3372c5255333
StoreScuJob, Orthanc Explorer for jobs
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
577 </ul> |
3372c5255333
StoreScuJob, Orthanc Explorer for jobs
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
578 </div> |
3372c5255333
StoreScuJob, Orthanc Explorer for jobs
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
579 </div> |
3372c5255333
StoreScuJob, Orthanc Explorer for jobs
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
580 |
3372c5255333
StoreScuJob, Orthanc Explorer for jobs
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
581 <div data-role="page" id="job" > |
3372c5255333
StoreScuJob, Orthanc Explorer for jobs
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
582 <div data-role="header" > |
3372c5255333
StoreScuJob, Orthanc Explorer for jobs
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
583 <h1><span class="orthanc-name"></span>Job</h1> |
2597 | 584 <div data-type="horizontal" data-role="controlgroup" class="ui-btn-left"> |
2873
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
585 <a href="#lookup" data-icon="arrow-r" data-role="button" data-direction="reverse">Lookup</a> |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
586 <a href="#plugins" data-icon="grid" data-role="button" data-direction="reverse">Plugins</a> |
2597 | 587 </div> |
588 <div data-type="horizontal" data-role="controlgroup" class="ui-btn-right"> | |
2573
3372c5255333
StoreScuJob, Orthanc Explorer for jobs
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
589 <a href="#jobs" data-icon="refresh" data-role="button" data-direction="reverse">Jobs</a> |
3372c5255333
StoreScuJob, Orthanc Explorer for jobs
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
590 </div> |
3372c5255333
StoreScuJob, Orthanc Explorer for jobs
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
591 </div> |
3372c5255333
StoreScuJob, Orthanc Explorer for jobs
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
592 <div data-role="content"> |
3372c5255333
StoreScuJob, Orthanc Explorer for jobs
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
593 <ul data-role="listview" data-inset="true" data-filter="true" id="job-info"> |
3372c5255333
StoreScuJob, Orthanc Explorer for jobs
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
594 </ul> |
3372c5255333
StoreScuJob, Orthanc Explorer for jobs
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
595 |
3372c5255333
StoreScuJob, Orthanc Explorer for jobs
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
596 <fieldset class="ui-grid-b"> |
3372c5255333
StoreScuJob, Orthanc Explorer for jobs
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
597 <div class="ui-block-a"></div> |
3372c5255333
StoreScuJob, Orthanc Explorer for jobs
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
598 <div class="ui-block-b"> |
2582
b3da733d984c
job actions in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2573
diff
changeset
|
599 <button id="job-cancel" data-theme="b">Cancel job</button> |
2573
3372c5255333
StoreScuJob, Orthanc Explorer for jobs
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
600 <button id="job-resubmit" data-theme="b">Resubmit job</button> |
3372c5255333
StoreScuJob, Orthanc Explorer for jobs
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
601 <button id="job-pause" data-theme="b">Pause job</button> |
3372c5255333
StoreScuJob, Orthanc Explorer for jobs
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
602 <button id="job-resume" data-theme="b">Resume job</button> |
3372c5255333
StoreScuJob, Orthanc Explorer for jobs
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
603 </div> |
3372c5255333
StoreScuJob, Orthanc Explorer for jobs
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
604 <div class="ui-block-c"></div> |
3372c5255333
StoreScuJob, Orthanc Explorer for jobs
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
605 </fieldset> |
3372c5255333
StoreScuJob, Orthanc Explorer for jobs
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
606 </div> |
3372c5255333
StoreScuJob, Orthanc Explorer for jobs
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
607 </div> |
2119
e0517f25919e
Improved robustness of Orthanc Explorer wrt. query/retrieve (maybe fix issue 24)
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1501
diff
changeset
|
608 |
485
bdbde1fbfab3
send resources through HTTP
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
484
diff
changeset
|
609 <div id="peer-store" style="display:none;" class="ui-body-c"> |
bdbde1fbfab3
send resources through HTTP
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
484
diff
changeset
|
610 <p align="center"><b>Sending to Orthanc peer...</b></p> |
1498 | 611 <p><img src="libs/images/ajax-loader.gif" alt="" /></p> |
485
bdbde1fbfab3
send resources through HTTP
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
484
diff
changeset
|
612 </div> |
bdbde1fbfab3
send resources through HTTP
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
484
diff
changeset
|
613 |
bdbde1fbfab3
send resources through HTTP
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
484
diff
changeset
|
614 <div id="dicom-store" style="display:none;" class="ui-body-c"> |
0 | 615 <p align="center"><b>Sending to DICOM modality...</b></p> |
1498 | 616 <p><img src="libs/images/ajax-loader.gif" alt="" /></p> |
0 | 617 </div> |
618 | |
1371
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
619 <div id="info-retrieve" style="display:none;" class="ui-body-c"> |
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
620 <p align="center"><b>Retrieving images from DICOM modality...</b></p> |
1498 | 621 <p><img src="libs/images/ajax-loader.gif" alt="" /></p> |
1371
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
622 </div> |
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
623 |
0 | 624 <div id="dialog" style="display:none" > |
625 </div> | |
626 </body> | |
627 </html> |