Mercurial > hg > orthanc
annotate OrthancExplorer/explorer.html @ 226:8a26a8e85edf
refactoring to read files
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Fri, 30 Nov 2012 09:45:29 +0100 |
parents | 4829c054751a |
children | f23318b11b39 |
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 |
9 <link rel="stylesheet" href="libs/jquery.mobile-1.1.0.min.css" /> | |
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 | |
16 <script src="libs/jquery-1.7.2.min.js"></script> | |
17 <script src="libs/jquery.mobile-1.1.0.min.js"></script> | |
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> | |
33 </head> | |
34 <body> | |
35 <div data-role="page" id="find-patients" > | |
36 <div data-role="header" > | |
151 | 37 <h1><span class="orthanc-name"></span>Find a patient</h1> |
0 | 38 <a href="#upload" data-icon="gear" class="ui-btn-right">Upload DICOM</a> |
39 </div> | |
40 <div data-role="content"> | |
41 <ul id="all-patients" data-role="listview" data-inset="true" data-filter="true"> | |
42 </ul> | |
43 </div> | |
44 </div> | |
45 | |
46 <div data-role="page" id="upload" > | |
47 <div data-role="header" > | |
151 | 48 <h1><span class="orthanc-name"></span>Upload DICOM files</h1> |
0 | 49 <a href="#find-patients" data-icon="search" class="ui-btn-left" data-direction="reverse">Find patient</a> |
50 </div> | |
51 <div data-role="content"> | |
52 <div style="display:none"> | |
83 | 53 <input id="fileupload" type="file" name="files[]" data-url="../instances/" multiple> |
0 | 54 </div> |
55 <p> | |
56 <ul data-role="listview" data-inset="true"> | |
57 <li data-icon="arrow-r" data-theme="e"><a href="#" id="upload-button">Start the upload</a></li> | |
58 <!--li data-icon="gear" data-theme="e"><a href="#" id="upload-abort" class="ui-disabled">Abort the current upload</a></li--> | |
59 <li data-icon="delete" data-theme="e"><a href="#" id="upload-clear">Clear the pending uploads</a></li> | |
60 </ul> | |
61 <div id="progress" class="ui-corner-all"> | |
62 <span class="bar ui-corner-all"></span> | |
63 <div class="label"></div> | |
64 </div> | |
65 </p> | |
66 <ul id="upload-list" data-role="listview" data-inset="true"> | |
67 <li data-role="list-divider">Drag and drop DICOM files here</li> | |
68 </ul> | |
69 </div> | |
70 </div> | |
71 | |
72 <div data-role="page" id="patient" > | |
73 <div data-role="header" > | |
152
4829c054751a
improved navigation in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
151
diff
changeset
|
74 <h1><span class="orthanc-name"></span>Patient</h1> |
0 | 75 <a href="#find-patients" data-icon="search" class="ui-btn-left" data-direction="reverse">Find patient</a> |
76 <a href="#upload" data-icon="gear" class="ui-btn-right">Upload DICOM</a> | |
77 </div> | |
78 <div data-role="content"> | |
79 <div class="ui-grid-a"> | |
80 <div class="ui-block-a" style="width:30%"> | |
81 <div style="padding-right:10px"> | |
82 <ul data-role="listview" data-inset="true" data-theme="a" id="patient-info"> | |
83 </ul> | |
84 <p> | |
85 <a href="#find-patients" data-role="button" data-icon="search">Go to patient finder</a> | |
86 <a href="#" data-role="button" data-icon="delete" id="patient-delete">Delete this patient</a> | |
87 </p> | |
88 </div> | |
89 </div> | |
90 <div class="ui-block-b" style="width:70%"> | |
91 <div style="padding:10px"> | |
92 <ul id="list-studies" data-role="listview" data-inset="true" data-filter="true"> | |
93 </ul> | |
94 </div> | |
95 </div> | |
96 </div> | |
97 </div> | |
98 </div> | |
99 | |
100 <div data-role="page" id="study"> | |
101 <div data-role="header"> | |
152
4829c054751a
improved navigation in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
151
diff
changeset
|
102 <h1> |
4829c054751a
improved navigation in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
151
diff
changeset
|
103 <span class="orthanc-name"></span> |
4829c054751a
improved navigation in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
151
diff
changeset
|
104 <a href="#" class="patient-link">Patient</a> » |
4829c054751a
improved navigation in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
151
diff
changeset
|
105 Study |
4829c054751a
improved navigation in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
151
diff
changeset
|
106 </h1> |
0 | 107 <a href="#find-patients" data-icon="search" class="ui-btn-left" data-direction="reverse">Find patient</a> |
108 <a href="#upload" data-icon="gear" class="ui-btn-right">Upload DICOM</a> | |
109 </div> | |
110 <div data-role="content"> | |
111 <div class="ui-grid-a"> | |
112 <div class="ui-block-a" style="width:30%"> | |
113 <div style="padding-right:10px"> | |
114 <ul data-role="listview" data-inset="true" data-theme="a" id="study-info"> | |
115 </ul> | |
116 <p> | |
117 <a href="#" data-role="button" data-icon="delete" id="study-delete">Delete this study</a> | |
118 </p> | |
119 </div> | |
120 </div> | |
121 <div class="ui-block-b" style="width:70%"> | |
122 <div style="padding:10px"> | |
123 <ul id="list-series" data-role="listview" data-inset="true" data-filter="true"> | |
124 </ul> | |
125 </div> | |
126 </div> | |
127 </div> | |
128 </div> | |
129 </div> | |
130 | |
131 <div data-role="page" id="series"> | |
132 <div data-role="header"> | |
152
4829c054751a
improved navigation in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
151
diff
changeset
|
133 <h1> |
4829c054751a
improved navigation in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
151
diff
changeset
|
134 <span class="orthanc-name"></span> |
4829c054751a
improved navigation in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
151
diff
changeset
|
135 <a href="#" class="patient-link">Patient</a> » |
4829c054751a
improved navigation in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
151
diff
changeset
|
136 <a href="#" class="study-link">Study</a> » |
4829c054751a
improved navigation in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
151
diff
changeset
|
137 Series |
4829c054751a
improved navigation in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
151
diff
changeset
|
138 </h1> |
4829c054751a
improved navigation in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
151
diff
changeset
|
139 |
0 | 140 <a href="#find-patients" data-icon="search" class="ui-btn-left" data-direction="reverse">Find patient</a> |
141 <a href="#upload" data-icon="gear" class="ui-btn-right">Upload DICOM</a> | |
142 </div> | |
143 <div data-role="content"> | |
144 <div class="ui-grid-a"> | |
145 <div class="ui-block-a" style="width:30%"> | |
146 <div style="padding-right:10px"> | |
147 <ul data-role="listview" data-inset="true" data-theme="a" id="series-info"> | |
148 </ul> | |
149 <p> | |
150 <a href="#" data-role="button" data-icon="delete" id="series-delete">Delete this series</a> | |
151 <a href="#" data-role="button" data-icon="arrow-d" id="series-preview">Preview this series</a> | |
152 <a href="#" data-role="button" data-icon="arrow-d" id="series-store">Store in another DICOM modality</a> | |
153 </p> | |
154 </div> | |
155 </div> | |
156 <div class="ui-block-b" style="width:70%"> | |
157 <div style="padding:10px"> | |
158 <ul id="list-instances" data-role="listview" data-inset="true" data-filter="true"> | |
159 </ul> | |
160 </div> | |
161 </div> | |
162 </div> | |
163 </div> | |
164 </div> | |
165 | |
166 <div data-role="page" id="instance"> | |
167 <div data-role="header"> | |
152
4829c054751a
improved navigation in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
151
diff
changeset
|
168 <h1> |
4829c054751a
improved navigation in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
151
diff
changeset
|
169 <span class="orthanc-name"></span> |
4829c054751a
improved navigation in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
151
diff
changeset
|
170 <a href="#" class="patient-link">Patient</a> » |
4829c054751a
improved navigation in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
151
diff
changeset
|
171 <a href="#" class="study-link">Study</a> » |
4829c054751a
improved navigation in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
151
diff
changeset
|
172 <a href="#" class="series-link">Series</a> » |
4829c054751a
improved navigation in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
151
diff
changeset
|
173 Instance |
4829c054751a
improved navigation in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
151
diff
changeset
|
174 </h1> |
0 | 175 <a href="#find-patients" data-icon="search" class="ui-btn-left" data-direction="reverse">Find patient</a> |
176 <a href="#upload" data-icon="gear" class="ui-btn-right">Upload DICOM</a> | |
177 </div> | |
178 <div data-role="content"> | |
179 <div class="ui-grid-a"> | |
180 <div class="ui-block-a" style="width:30%"> | |
181 <div style="padding-right:10px"> | |
182 <ul data-role="listview" data-inset="true" data-theme="a" id="instance-info"> | |
183 </ul> | |
184 <p> | |
185 <a href="#" data-role="button" data-icon="delete" id="instance-delete">Delete this instance</a> | |
186 <a href="#" data-role="button" data-icon="arrow-d" id="instance-download-dicom">Download the DICOM file</a> | |
187 <a href="#" data-role="button" data-icon="arrow-d" id="instance-download-json">Download the JSON file</a> | |
188 <a href="#" data-role="button" data-icon="arrow-d" id="instance-preview">Preview the instance</a> | |
189 <a href="#" data-role="button" data-icon="arrow-d" id="instance-store">Store in another DICOM modality</a> | |
190 </p> | |
191 </div> | |
192 </div> | |
193 <div class="ui-block-b" style="width:70%"> | |
194 <div style="padding:10px"> | |
195 <div class="ui-body ui-body-b"> | |
196 <h1>DICOM Tags</h1> | |
35
f6d12037f886
full json vs. simplified json
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
197 <p align="right"> |
f6d12037f886
full json vs. simplified json
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
198 <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
|
199 <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
|
200 </p> |
0 | 201 <div id="dicom-tree"></div> |
202 </div> | |
203 </div> | |
204 </div> | |
205 </div> | |
206 </div> | |
207 </div> | |
208 | |
209 <div id="loading" style="display:none;" class="ui-body-c"> | |
210 <p align="center"><b>Sending to DICOM modality...</b></p> | |
211 <p><img src="libs/images/ajax-loader2.gif" alt="" /></p> | |
212 </div> | |
213 | |
214 <div id="dialog" style="display:none" > | |
215 </div> | |
216 </body> | |
217 </html> |