Mercurial > hg > orthanc
annotate OrthancServer/OrthancExplorer/explorer.html @ 5273:7cb1b851f5c8
Added a sample plugin bringing multitenant DICOM support through labels
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Fri, 14 Apr 2023 11:49:24 +0200 |
parents | eb2684260c19 |
children | 9875e1f24394 |
rev | line source |
---|---|
0 | 1 <!DOCTYPE html> |
2 | |
3 <html> | |
3102
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
4 |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
5 <head> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
6 <meta charset="utf-8"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
7 <meta name="viewport" content="width=device-width, initial-scale=1"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
8 <title>Orthanc Explorer</title> |
0 | 9 |
4461
22abc6851191
The DICOM meta-header and the transfer syntax are displayed at the "Instance" level
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
10 <link rel="shortcut icon" href="images/favicon.ico"> |
22abc6851191
The DICOM meta-header and the transfer syntax are displayed at the "Instance" level
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
11 |
3102
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
12 <link rel="stylesheet" href="libs/jquery.mobile.min.css" /> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
13 <link rel="stylesheet" href="libs/jqtree.css" /> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
14 <link rel="stylesheet" href="libs/jquery.mobile.simpledialog.min.css" /> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
15 <link rel="stylesheet" href="libs/jquery-file-upload/css/style.css" /> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
16 <link rel="stylesheet" href="libs/jquery-file-upload/css/jquery.fileupload-ui.css" /> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
17 <link rel="stylesheet" href="libs/slimbox2/slimbox2.css" /> |
0 | 18 |
3102
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
19 <script src="libs/jquery.min.js"></script> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
20 <script src="libs/jquery.mobile.min.js"></script> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
21 <script src="libs/jqm.page.params.js"></script> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
22 <script src="libs/tree.jquery.js"></script> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
23 <script src="libs/date.js"></script> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
24 <script src="libs/jquery.mobile.simpledialog2.js"></script> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
25 <script src="libs/slimbox2.js"></script> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
26 <script src="libs/jquery.blockui.js"></script> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
27 |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
28 <!-- https://github.com/blueimp/jQuery-File-Upload/wiki/Basic-plugin --> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
29 <script src="libs/jquery-file-upload/js/vendor/jquery.ui.widget.js"></script> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
30 <script src="libs/jquery-file-upload/js/jquery.iframe-transport.js"></script> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
31 <script src="libs/jquery-file-upload/js/jquery.fileupload.js"></script> |
0 | 32 |
3102
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
33 <link rel="stylesheet" href="explorer.css" /> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
34 <script src="file-upload.js"></script> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
35 <script src="explorer.js"></script> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
36 <script src="query-retrieve.js"></script> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
37 <script src="../plugins/explorer.js"></script> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
38 </head> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
39 |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
40 <body> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
41 <div data-role="page" id="lookup"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
42 <div data-role="header"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
43 <h1><span class="orthanc-name"></span>Lookup studies</h1> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
44 <div data-type="horizontal" data-role="controlgroup" class="ui-btn-left"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
45 <a href="#lookup" data-icon="arrow-r" data-role="button" data-direction="reverse">Lookup</a> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
46 <a href="#plugins" data-icon="grid" data-role="button" data-direction="reverse">Plugins</a> |
0 | 47 </div> |
3102
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
48 <div data-type="horizontal" data-role="controlgroup" class="ui-btn-right"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
49 <a href="#upload" data-icon="gear" data-role="button">Upload</a> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
50 <a href="#query-retrieve" data-icon="search" data-role="button">Query/Retrieve</a> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
51 <a href="#jobs" data-icon="refresh" data-role="button" data-direction="reverse">Jobs</a> |
0 | 52 </div> |
53 </div> | |
3102
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
54 <div data-role="content"> |
3166
6953a4e475b3
adding the logo in the explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3109
diff
changeset
|
55 <div data-role="content" id="content" style="padding:0px"> |
6953a4e475b3
adding the logo in the explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3109
diff
changeset
|
56 <p align="center"> |
6953a4e475b3
adding the logo in the explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3109
diff
changeset
|
57 <a href="http://www.orthanc-server.com/" target="_blank" alt="Orthanc homepage"> |
6953a4e475b3
adding the logo in the explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3109
diff
changeset
|
58 <img src="orthanc-logo.png" alt="Orthanc" style="max-width:100%" /> |
6953a4e475b3
adding the logo in the explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3109
diff
changeset
|
59 </a> |
6953a4e475b3
adding the logo in the explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3109
diff
changeset
|
60 </p> |
6953a4e475b3
adding the logo in the explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3109
diff
changeset
|
61 </div> |
6953a4e475b3
adding the logo in the explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3109
diff
changeset
|
62 |
3102
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
63 <form data-ajax="false" id="lookup-form"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
64 <div data-role="fieldcontain"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
65 <label for="lookup-patient-id">Patient ID:</label> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
66 <input type="text" name="lookup-patient-id" id="lookup-patient-id" value="" /> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
67 </div> |
0 | 68 |
3102
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
69 <div data-role="fieldcontain"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
70 <label for="lookup-patient-name">Patient Name:</label> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
71 <input type="text" name="lookup-patient-name" id="lookup-patient-name" value="" /> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
72 </div> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
73 |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
74 <div data-role="fieldcontain"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
75 <label for="lookup-accession-number">Accession Number:</label> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
76 <input type="text" name="lookup-accession-number" id="lookup-accession-number" value="" /> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
77 </div> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
78 |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
79 <div data-role="fieldcontain"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
80 <label for="lookup-study-description">Study Description:</label> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
81 <input type="text" name="lookup-study-description" id="lookup-study-description" value="" /> |
2594
7fbe3f024ac9
new screen in OrthancExplorer to list studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
82 </div> |
3102
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
83 |
5244
72dfa0ac84eb
lookup for labels in orthanc explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4853
diff
changeset
|
84 <div data-role="fieldcontain" id="lookup-study-labels-div"> |
72dfa0ac84eb
lookup for labels in orthanc explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4853
diff
changeset
|
85 <label for="lookup-study-labels">Labels:</label> |
72dfa0ac84eb
lookup for labels in orthanc explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4853
diff
changeset
|
86 <input type="text" name="lookup-study-description" id="lookup-study-labels" value="" /> |
72dfa0ac84eb
lookup for labels in orthanc explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4853
diff
changeset
|
87 </div> |
72dfa0ac84eb
lookup for labels in orthanc explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4853
diff
changeset
|
88 |
3102
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
89 <div data-role="fieldcontain"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
90 <label for="lookup-study-date">Study Date:</label> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
91 <select name="lookup-study-date" id="lookup-study-date"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
92 </select> |
2594
7fbe3f024ac9
new screen in OrthancExplorer to list studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
93 </div> |
3102
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
94 |
4757
72a850947b11
In lookup and query/retrieve, possibility to provide a specific study date
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4461
diff
changeset
|
95 <div data-role="fieldcontain"> |
72a850947b11
In lookup and query/retrieve, possibility to provide a specific study date
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4461
diff
changeset
|
96 <label for="lookup-study-date-specific"></label> |
72a850947b11
In lookup and query/retrieve, possibility to provide a specific study date
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4461
diff
changeset
|
97 <input type="date" name="lookup-study-date-specific" id="lookup-study-date-specific" /> |
72a850947b11
In lookup and query/retrieve, possibility to provide a specific study date
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4461
diff
changeset
|
98 </div> |
72a850947b11
In lookup and query/retrieve, possibility to provide a specific study date
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4461
diff
changeset
|
99 |
3102
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
100 <fieldset class="ui-grid-b"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
101 <div class="ui-block-a"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
102 <a href="#find-patients" data-role="button" data-theme="b" data-direction="reverse">All patients</a> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
103 </div> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
104 <div class="ui-block-b"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
105 <a href="#find-studies" data-role="button" data-theme="b" data-direction="reverse">All studies</a> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
106 </div> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
107 <div class="ui-block-c"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
108 <button id="lookup-submit" type="submit" data-theme="e">Do lookup</button> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
109 </div> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
110 </fieldset> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
111 <div> </div> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
112 </form> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
113 <div id="lookup-result"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
114 <div id="lookup-alert"> |
2873
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
115 <div class="ui-bar ui-bar-e"> |
3102
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
116 <h3>Warning:</h3> Your lookup led to many results! |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
117 Showing only <span id="lookup-count">?</span> studies to |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
118 avoid performance issue. Please make your query more |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
119 specific, then relaunch the lookup. |
2873
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
120 </div> |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
121 <div> </div> |
703d1e848907
Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2816
diff
changeset
|
122 </div> |
3102
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
123 <ul data-role="listview" data-inset="true" data-filter="true"> |
2594
7fbe3f024ac9
new screen in OrthancExplorer to list studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
124 </ul> |
7fbe3f024ac9
new screen in OrthancExplorer to list studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
125 </div> |
7fbe3f024ac9
new screen in OrthancExplorer to list studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
126 </div> |
3102
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
127 </div> |
2594
7fbe3f024ac9
new screen in OrthancExplorer to list studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
128 |
3102
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
129 <div data-role="page" id="find-patients"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
130 <div data-role="header"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
131 <h1><span class="orthanc-name"></span>All patients</h1> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
132 <div data-type="horizontal" data-role="controlgroup" class="ui-btn-left"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
133 <a href="#lookup" data-icon="arrow-r" data-role="button" data-direction="reverse">Lookup</a> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
134 <a href="#plugins" data-icon="grid" data-role="button" data-direction="reverse">Plugins</a> |
0 | 135 </div> |
3102
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
136 <div data-type="horizontal" data-role="controlgroup" class="ui-btn-right"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
137 <a href="#upload" data-icon="gear" data-role="button">Upload</a> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
138 <a href="#query-retrieve" data-icon="search" data-role="button">Query/Retrieve</a> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
139 <a href="#jobs" data-icon="refresh" data-role="button" data-direction="reverse">Jobs</a> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
140 </div> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
141 </div> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
142 <div data-role="content"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
143 <div id="alert-patients"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
144 <div class="ui-bar ui-bar-e"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
145 <h3>Warning:</h3> This is a large Orthanc server. Showing |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
146 only <span id="count-patients">?</span> patients to avoid |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
147 performance issue. Make sure to use lookup if targeting |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
148 specific patients! |
0 | 149 </div> |
3102
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
150 <div> </div> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
151 </div> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
152 <ul id="all-patients" data-role="listview" data-inset="true" data-filter="true"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
153 </ul> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
154 </div> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
155 </div> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
156 |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
157 <div data-role="page" id="find-studies"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
158 <div data-role="header"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
159 <h1><span class="orthanc-name"></span>All studies</h1> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
160 <div data-type="horizontal" data-role="controlgroup" class="ui-btn-left"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
161 <a href="#lookup" data-icon="arrow-r" data-role="button" data-direction="reverse">Lookup</a> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
162 <a href="#plugins" data-icon="grid" data-role="button" data-direction="reverse">Plugins</a> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
163 </div> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
164 <div data-type="horizontal" data-role="controlgroup" class="ui-btn-right"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
165 <a href="#upload" data-icon="gear" data-role="button">Upload</a> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
166 <a href="#query-retrieve" data-icon="search" data-role="button">Query/Retrieve</a> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
167 <a href="#jobs" data-icon="refresh" data-role="button" data-direction="reverse">Jobs</a> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
168 </div> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
169 </div> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
170 <div data-role="content"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
171 <div id="alert-studies"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
172 <div class="ui-bar ui-bar-e"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
173 <h3>Warning:</h3> This is a large Orthanc server. Showing |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
174 only <span id="count-studies">?</span> studies to avoid |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
175 performance issue. Make sure to use lookup if targeting |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
176 specific studies! |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
177 </div> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
178 <div> </div> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
179 </div> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
180 <ul id="all-studies" data-role="listview" data-inset="true" data-filter="true"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
181 </ul> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
182 </div> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
183 </div> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
184 |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
185 <div data-role="page" id="upload"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
186 <div data-role="header"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
187 <h1><span class="orthanc-name"></span>Upload DICOM files</h1> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
188 <div data-type="horizontal" data-role="controlgroup" class="ui-btn-left"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
189 <a href="#lookup" data-icon="arrow-r" data-role="button" data-direction="reverse">Lookup</a> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
190 <a href="#plugins" data-icon="grid" data-role="button" data-direction="reverse">Plugins</a> |
0 | 191 </div> |
192 </div> | |
3102
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
193 <div data-role="content"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
194 <div> |
3109
6aa8d90aeee5
minor layout modification
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3102
diff
changeset
|
195 <!-- It's very difficult to style a "file" input so we |
6aa8d90aeee5
minor layout modification
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3102
diff
changeset
|
196 actually hide it and create a "proxy" button that is |
6aa8d90aeee5
minor layout modification
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3102
diff
changeset
|
197 forwarding its click to the "file" input --> |
3102
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
198 <input id="fileupload" type="file" name="files[]" data-url="../instances/" style="display:none" multiple> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
199 </div> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
200 <p> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
201 <ul data-role="listview" data-inset="true"> |
3109
6aa8d90aeee5
minor layout modification
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3102
diff
changeset
|
202 <li id="fileupload-proxy" onclick="$('#fileupload').click()" data-icon="arrow-r" data-theme="e"> |
6aa8d90aeee5
minor layout modification
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3102
diff
changeset
|
203 <a href="#">Select files to upload ...</a> |
6aa8d90aeee5
minor layout modification
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3102
diff
changeset
|
204 </li> |
3102
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
205 <li data-icon="arrow-r" data-theme="e"><a href="#" id="upload-button">Start the upload</a></li> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
206 <!--li data-icon="gear" data-theme="e"><a href="#" id="upload-abort" class="ui-disabled">Abort the current upload</a></li--> |
3109
6aa8d90aeee5
minor layout modification
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3102
diff
changeset
|
207 <li data-icon="delete" data-theme="d"><a href="#" id="upload-clear">Clear the pending uploads</a></li> |
3102
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
208 </ul> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
209 <div id="progress" class="ui-corner-all"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
210 <span class="bar ui-corner-all"></span> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
211 <div class="label"></div> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
212 </div> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
213 </p> |
3109
6aa8d90aeee5
minor layout modification
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3102
diff
changeset
|
214 <div class="ui-bar ui-bar-e" id="issue-21-warning"> |
6aa8d90aeee5
minor layout modification
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3102
diff
changeset
|
215 <h3>Warning:</h3> Orthanc issue #21: On Firefox, especially on |
6aa8d90aeee5
minor layout modification
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3102
diff
changeset
|
216 Linux & OSX systems, files might be missing if using |
6aa8d90aeee5
minor layout modification
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3102
diff
changeset
|
217 drag-and-drop. Please use the "Select files to upload" button |
6aa8d90aeee5
minor layout modification
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3102
diff
changeset
|
218 instead, or use the command-line "ImportDicomFiles.py" script. |
6aa8d90aeee5
minor layout modification
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3102
diff
changeset
|
219 </div> |
3102
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
220 <ul id="upload-list" data-role="listview" data-inset="true"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
221 <li data-role="list-divider">Drag and drop DICOM files here</li> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
222 </ul> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
223 </div> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
224 </div> |
0 | 225 |
3102
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
226 <div data-role="page" id="patient"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
227 <div data-role="header"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
228 <h1><span class="orthanc-name"></span>Patient</h1> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
229 <div data-type="horizontal" data-role="controlgroup" class="ui-btn-left"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
230 <a href="#lookup" data-icon="arrow-r" data-role="button" data-direction="reverse">Lookup</a> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
231 <a href="#plugins" data-icon="grid" data-role="button" data-direction="reverse">Plugins</a> |
0 | 232 </div> |
3102
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
233 <div data-type="horizontal" data-role="controlgroup" class="ui-btn-right"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
234 <a href="#upload" data-icon="gear" data-role="button">Upload</a> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
235 <a href="#query-retrieve" data-icon="search" data-role="button">Query/Retrieve</a> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
236 <a href="#jobs" data-icon="refresh" data-role="button" data-direction="reverse">Jobs</a> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
237 </div> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
238 </div> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
239 <div data-role="content"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
240 <div class="ui-grid-a"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
241 <div class="ui-block-a" style="width:30%"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
242 <div style="padding-right:10px"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
243 <ul data-role="listview" data-inset="true" data-theme="a" id="patient-info"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
244 </ul> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
245 <p> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
246 <div class="switch-container"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
247 <select name="protection" id="protection" data-role="slider"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
248 <option value="off">Unprotected</option> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
249 <option value="on">Protected</option> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
250 </select> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
251 </div> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
252 </p> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
253 <ul data-role="listview" data-inset="true" data-theme="d" data-divider-theme="c"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
254 <li data-role="list-divider">Interact</li> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
255 <li data-icon="delete"><a href="#" id="patient-delete">Delete this patient</a></li> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
256 <li data-icon="forward"><a href="#" id="patient-store">Send to remote modality</a></li> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
257 <li data-icon="star"><a href="#" id="patient-anonymize">Anonymize</a></li> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
258 </ul> |
442 | 259 |
4853
b3d0a3a4d890
Added links to download attachments from the Orthanc Explorer
Alain Mazy <am@osimis.io>
parents:
4757
diff
changeset
|
260 <ul data-role="listview" data-inset="true" data-theme="d" data-divider-theme="c" id="patient-access"> |
3102
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
261 <li data-role="list-divider">Access</li> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
262 <li data-icon="info" data-theme="e" style="display:none"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
263 <a href="#" id="patient-anonymized-from">Before anonymization</a> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
264 </li> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
265 <li data-icon="info" data-theme="e" style="display:none"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
266 <a href="#" id="patient-modified-from">Before modification</a> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
267 </li> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
268 <li data-icon="gear"><a href="#" id="patient-archive">Download ZIP</a></li> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
269 <li data-icon="gear"><a href="#" id="patient-media">Download DICOMDIR</a></li> |
5245
b2de3a2ad3b9
Orthanc Explorer: buttons to copy the URL of ZIP/DICOM to the clipboard
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4853
diff
changeset
|
270 <li data-icon="gear"><a href="#" id="patient-archive-link">Copy link to ZIP</a></li> |
3102
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
271 </ul> |
0 | 272 </div> |
3102
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
273 </div> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
274 <div class="ui-block-b" style="width:70%"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
275 <div style="padding:10px"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
276 <ul id="list-studies" data-role="listview" data-inset="true" data-filter="true"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
277 </ul> |
0 | 278 </div> |
279 </div> | |
280 </div> | |
281 </div> | |
3102
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
282 </div> |
0 | 283 |
3102
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
284 <div data-role="page" id="study"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
285 <div data-role="header"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
286 <h1> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
287 <span class="orthanc-name"></span> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
288 <a href="#" class="patient-link">Patient</a> » |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
289 Study |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
290 </h1> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
291 <div data-type="horizontal" data-role="controlgroup" class="ui-btn-left"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
292 <a href="#lookup" data-icon="arrow-r" data-role="button" data-direction="reverse">Lookup</a> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
293 <a href="#plugins" data-icon="grid" data-role="button" data-direction="reverse">Plugins</a> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
294 </div> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
295 <div data-type="horizontal" data-role="controlgroup" class="ui-btn-right"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
296 <a href="#upload" data-icon="gear" data-role="button">Upload</a> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
297 <a href="#query-retrieve" data-icon="search" data-role="button">Query/Retrieve</a> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
298 <a href="#jobs" data-icon="refresh" data-role="button" data-direction="reverse">Jobs</a> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
299 </div> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
300 </div> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
301 <div data-role="content"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
302 <div class="ui-grid-a"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
303 <div class="ui-block-a" style="width:30%"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
304 <div style="padding-right:10px"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
305 <ul data-role="listview" data-inset="true" data-theme="a" id="study-info"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
306 </ul> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
307 |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
308 <ul data-role="listview" data-inset="true" data-theme="d" data-divider-theme="c"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
309 <li data-role="list-divider">Interact</li> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
310 <li data-icon="delete"><a href="#" id="study-delete">Delete this study</a></li> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
311 <li data-icon="forward"><a href="#" id="study-store">Send to DICOM modality</a></li> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
312 <li data-icon="star"><a href="#" id="study-anonymize">Anonymize</a></li> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
313 </ul> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
314 |
4853
b3d0a3a4d890
Added links to download attachments from the Orthanc Explorer
Alain Mazy <am@osimis.io>
parents:
4757
diff
changeset
|
315 <ul data-role="listview" data-inset="true" data-theme="d" data-divider-theme="c" id="study-access"> |
3102
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
316 <li data-role="list-divider">Access</li> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
317 <li data-icon="info" data-theme="e" style="display:none"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
318 <a href="#" id="study-anonymized-from">Before anonymization</a> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
319 </li> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
320 <li data-icon="info" data-theme="e" style="display:none"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
321 <a href="#" id="study-modified-from">Before modification</a> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
322 </li> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
323 <li data-icon="gear"><a href="#" id="study-archive">Download ZIP</a></li> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
324 <li data-icon="gear"><a href="#" id="study-media">Download DICOMDIR</a></li> |
5245
b2de3a2ad3b9
Orthanc Explorer: buttons to copy the URL of ZIP/DICOM to the clipboard
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4853
diff
changeset
|
325 <li data-icon="gear"><a href="#" id="study-archive-link">Copy link to ZIP</a></li> |
3102
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
326 </ul> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
327 </div> |
2594
7fbe3f024ac9
new screen in OrthancExplorer to list studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
328 </div> |
3102
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
329 <div class="ui-block-b" style="width:70%"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
330 <div style="padding:10px"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
331 <ul id="list-series" data-role="listview" data-inset="true" data-filter="true"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
332 </ul> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
333 </div> |
1371
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
334 </div> |
0 | 335 </div> |
3102
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
336 </div> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
337 </div> |
442 | 338 |
3102
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
339 <div data-role="page" id="series"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
340 <div data-role="header"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
341 <h1> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
342 <span class="orthanc-name"></span> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
343 <a href="#" class="patient-link">Patient</a> » |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
344 <a href="#" class="study-link">Study</a> » |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
345 Series |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
346 </h1> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
347 <div data-type="horizontal" data-role="controlgroup" class="ui-btn-left"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
348 <a href="#lookup" data-icon="arrow-r" data-role="button" data-direction="reverse">Lookup</a> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
349 <a href="#plugins" data-icon="grid" data-role="button" data-direction="reverse">Plugins</a> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
350 </div> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
351 <div data-type="horizontal" data-role="controlgroup" class="ui-btn-right"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
352 <a href="#upload" data-icon="gear" data-role="button">Upload</a> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
353 <a href="#query-retrieve" data-icon="search" data-role="button">Query/Retrieve</a> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
354 <a href="#jobs" data-icon="refresh" data-role="button" data-direction="reverse">Jobs</a> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
355 </div> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
356 </div> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
357 <div data-role="content"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
358 <div class="ui-grid-a"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
359 <div class="ui-block-a" style="width:30%"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
360 <div style="padding-right:10px"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
361 <ul data-role="listview" data-inset="true" data-theme="a" id="series-info"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
362 </ul> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
363 |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
364 <ul data-role="listview" data-inset="true" data-theme="d" data-divider-theme="c"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
365 <li data-role="list-divider">Interact</li> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
366 <li data-icon="delete"><a href="#" id="series-delete">Delete this series</a></li> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
367 <li data-icon="forward"><a href="#" id="series-store">Send to DICOM modality</a></li> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
368 <li data-icon="star"><a href="#" id="series-anonymize">Anonymize</a></li> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
369 </ul> |
442 | 370 |
4853
b3d0a3a4d890
Added links to download attachments from the Orthanc Explorer
Alain Mazy <am@osimis.io>
parents:
4757
diff
changeset
|
371 <ul data-role="listview" data-inset="true" data-theme="d" data-divider-theme="c" id="series-access"> |
3102
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
372 <li data-role="list-divider">Access</li> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
373 <li data-icon="info" data-theme="e" style="display:none"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
374 <a href="#" id="series-anonymized-from">Before anonymization</a> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
375 </li> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
376 <li data-icon="info" data-theme="e" style="display:none"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
377 <a href="#" id="series-modified-from">Before modification</a> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
378 </li> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
379 <li data-icon="search"><a href="#" id="series-preview">Preview this series</a></li> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
380 <li data-icon="gear"><a href="#" id="series-archive">Download ZIP</a></li> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
381 <li data-icon="gear"><a href="#" id="series-media">Download DICOMDIR</a></li> |
5245
b2de3a2ad3b9
Orthanc Explorer: buttons to copy the URL of ZIP/DICOM to the clipboard
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4853
diff
changeset
|
382 <li data-icon="gear"><a href="#" id="series-archive-link">Copy link to ZIP</a></li> |
3102
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
383 </ul> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
384 </div> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
385 </div> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
386 <div class="ui-block-b" style="width:70%"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
387 <div style="padding:10px"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
388 <ul id="list-instances" data-role="listview" data-inset="true" data-filter="true"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
389 </ul> |
0 | 390 </div> |
3102
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
391 </div> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
392 </div> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
393 </div> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
394 </div> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
395 |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
396 <div data-role="page" id="instance"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
397 <div data-role="header"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
398 <h1> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
399 <span class="orthanc-name"></span> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
400 <a href="#" class="patient-link">Patient</a> » |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
401 <a href="#" class="study-link">Study</a> » |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
402 <a href="#" class="series-link">Series</a> » |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
403 Instance |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
404 </h1> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
405 <div data-type="horizontal" data-role="controlgroup" class="ui-btn-left"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
406 <a href="#lookup" data-icon="arrow-r" data-role="button" data-direction="reverse">Lookup</a> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
407 <a href="#plugins" data-icon="grid" data-role="button" data-direction="reverse">Plugins</a> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
408 </div> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
409 <div data-type="horizontal" data-role="controlgroup" class="ui-btn-right"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
410 <a href="#upload" data-icon="gear" data-role="button">Upload</a> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
411 <a href="#query-retrieve" data-icon="search" data-role="button">Query/Retrieve</a> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
412 <a href="#jobs" data-icon="refresh" data-role="button" data-direction="reverse">Jobs</a> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
413 </div> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
414 </div> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
415 <div data-role="content"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
416 <div class="ui-grid-a"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
417 <div class="ui-block-a" style="width:30%"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
418 <div style="padding-right:10px"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
419 <ul data-role="listview" data-inset="true" data-theme="a" id="instance-info"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
420 </ul> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
421 |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
422 <ul data-role="listview" data-inset="true" data-theme="d" data-divider-theme="c"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
423 <li data-role="list-divider">Interact</li> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
424 <li data-icon="delete"><a href="#" id="instance-delete">Delete this instance</a></li> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
425 <li data-icon="forward"><a href="#" id="instance-store">Send to DICOM modality</a></li> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
426 </ul> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
427 |
4853
b3d0a3a4d890
Added links to download attachments from the Orthanc Explorer
Alain Mazy <am@osimis.io>
parents:
4757
diff
changeset
|
428 <ul data-role="listview" data-inset="true" data-theme="d" data-divider-theme="c" id="instance-access"> |
3102
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
429 <li data-role="list-divider">Access</li> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
430 <li data-icon="info" data-theme="e" style="display:none"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
431 <a href="#" id="instance-anonymized-from">Before anonymization</a> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
432 </li> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
433 <li data-icon="info" data-theme="e" style="display:none"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
434 <a href="#" id="instance-modified-from">Before modification</a> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
435 </li> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
436 <li data-icon="arrow-d"><a href="#" id="instance-download-dicom">Download the DICOM file</a></li> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
437 <li data-icon="arrow-d"><a href="#" id="instance-download-json">Download the JSON file</a></li> |
5247
eb2684260c19
support labels for mysql
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5246
diff
changeset
|
438 <li data-icon="gear"><a href="#" id="instance-download-link">Copy link to the DICOM file</a></li> |
3102
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
439 <li data-icon="search"><a href="#" id="instance-preview">Preview the instance</a></li> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
440 </ul> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
441 </div> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
442 </div> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
443 <div class="ui-block-b" style="width:70%"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
444 <div style="padding:10px"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
445 <div class="ui-body ui-body-b"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
446 <h1>DICOM Tags</h1> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
447 <p align="right"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
448 <input type="checkbox" id="show-tag-name" checked="checked" class="custom" data-mini="true" /> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
449 <label for="show-tag-name">Show tag description</label> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
450 </p> |
4461
22abc6851191
The DICOM meta-header and the transfer syntax are displayed at the "Instance" level
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
451 <h2>Meta header</h2> |
22abc6851191
The DICOM meta-header and the transfer syntax are displayed at the "Instance" level
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
452 <div id="dicom-metaheader"></div> |
22abc6851191
The DICOM meta-header and the transfer syntax are displayed at the "Instance" level
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
453 <h2>Dataset</h2> |
22abc6851191
The DICOM meta-header and the transfer syntax are displayed at the "Instance" level
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
454 <p align="right" id="transfer-syntax"> |
22abc6851191
The DICOM meta-header and the transfer syntax are displayed at the "Instance" level
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
455 <em>Transfer syntax: <span id="transfer-syntax-text"></span></em> |
22abc6851191
The DICOM meta-header and the transfer syntax are displayed at the "Instance" level
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
456 </p> |
3102
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
457 <div id="dicom-tree"></div> |
0 | 458 </div> |
459 </div> | |
460 </div> | |
461 </div> | |
462 </div> | |
3102
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
463 </div> |
442 | 464 |
3102
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
465 <div data-role="page" id="plugins"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
466 <div data-role="header"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
467 <h1><span class="orthanc-name"></span>Plugins</h1> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
468 <div data-type="horizontal" data-role="controlgroup" class="ui-btn-left"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
469 <a href="#lookup" data-icon="arrow-r" data-role="button" data-direction="reverse">Lookup</a> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
470 <a href="#plugins" data-icon="grid" data-role="button" data-direction="reverse">Plugins</a> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
471 </div> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
472 </div> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
473 <div data-role="content"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
474 <ul id="all-plugins" data-role="listview" data-inset="true" data-filter="true"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
475 </ul> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
476 </div> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
477 </div> |
442 | 478 |
3102
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
479 <div data-role="page" id="query-retrieve"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
480 <div data-role="header"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
481 <h1><span class="orthanc-name"></span>DICOM Query/Retrieve (1/4)</h1> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
482 <div data-type="horizontal" data-role="controlgroup" class="ui-btn-left"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
483 <a href="#lookup" data-icon="arrow-r" data-role="button" data-direction="reverse">Lookup</a> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
484 <a href="#plugins" data-icon="grid" data-role="button" data-direction="reverse">Plugins</a> |
0 | 485 </div> |
486 </div> | |
3102
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
487 <div data-role="content"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
488 <form data-ajax="false"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
489 <div data-role="fieldcontain"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
490 <label for="qr-server">DICOM server:</label> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
491 <select name="qr-server" id="qr-server"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
492 </select> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
493 </div> |
0 | 494 |
3102
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
495 <div data-role="fieldcontain" id="qr-fields"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
496 <fieldset data-role="controlgroup"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
497 <legend>Field of interest:</legend> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
498 <input type="radio" name="qr-field" id="qr-patient-id" value="PatientID" checked="checked" /> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
499 <label for="qr-patient-id">Patient ID</label> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
500 <input type="radio" name="qr-field" id="qr-patient-name" value="PatientName" /> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
501 <label for="qr-patient-name">Patient Name</label> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
502 <input type="radio" name="qr-field" id="qr-accession-number" value="AccessionNumber" /> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
503 <label for="qr-accession-number">Accession Number</label> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
504 <input type="radio" name="qr-field" id="qr-study-description" value="StudyDescription" /> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
505 <label for="qr-study-description">Study Description</label> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
506 </fieldset> |
2594
7fbe3f024ac9
new screen in OrthancExplorer to list studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
507 </div> |
442 | 508 |
3102
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
509 <div data-role="fieldcontain"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
510 <label for="qr-value">Value for this field:</label> |
4757
72a850947b11
In lookup and query/retrieve, possibility to provide a specific study date
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4461
diff
changeset
|
511 <input type="text" name="qr-value" id="qr-value" value="" /> |
3102
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
512 </div> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
513 |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
514 <div data-role="fieldcontain"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
515 <label for="qr-date">Study date:</label> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
516 <select name="qr-date" id="qr-date"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
517 </select> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
518 </div> |
442 | 519 |
4757
72a850947b11
In lookup and query/retrieve, possibility to provide a specific study date
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4461
diff
changeset
|
520 <div data-role="fieldcontain"> |
72a850947b11
In lookup and query/retrieve, possibility to provide a specific study date
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4461
diff
changeset
|
521 <label for="qr-date-specific"></label> |
72a850947b11
In lookup and query/retrieve, possibility to provide a specific study date
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4461
diff
changeset
|
522 <input type="date" name="qr-date-specific" id="qr-date-specific" /> |
72a850947b11
In lookup and query/retrieve, possibility to provide a specific study date
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4461
diff
changeset
|
523 </div> |
72a850947b11
In lookup and query/retrieve, possibility to provide a specific study date
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4461
diff
changeset
|
524 |
3102
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
525 <div data-role="fieldcontain" id="qr-modalities"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
526 <div data-role="fieldcontain"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
527 <fieldset data-role="controlgroup" data-type="horizontal"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
528 <legend>Modalities:</legend> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
529 <input type="checkbox" name="CR" id="qr-cr" class="custom" /> <label for="qr-cr">CR</label> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
530 <input type="checkbox" name="CT" id="qr-ct" class="custom" /> <label for="qr-ct">CT</label> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
531 <input type="checkbox" name="MR" id="qr-mr" class="custom" /> <label for="qr-mr">MR</label> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
532 <input type="checkbox" name="NM" id="qr-nm" class="custom" /> <label for="qr-nm">NM</label> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
533 <input type="checkbox" name="PT" id="qr-pt" class="custom" /> <label for="qr-pt">PT</label> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
534 <input type="checkbox" name="US" id="qr-us" class="custom" /> <label for="qr-us">US</label> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
535 <input type="checkbox" name="XA" id="qr-xa" class="custom" /> <label for="qr-xa">XA</label> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
536 <input type="checkbox" name="DR" id="qr-dr" class="custom" /> <label for="qr-dr">DR</label> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
537 <input type="checkbox" name="DX" id="qr-dx" class="custom" /> <label for="qr-dx">DX</label> |
3334 | 538 <input type="checkbox" name="MG" id="qr-mg" class="custom" /> <label for="qr-mg">MG</label> |
3102
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
539 </fieldset> |
0 | 540 </div> |
541 </div> | |
3102
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
542 |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
543 <fieldset class="ui-grid-a"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
544 <div class="ui-block-a"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
545 <button id="qr-echo" data-theme="a">Test Echo</button> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
546 </div> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
547 <div class="ui-block-b"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
548 <button id="qr-submit" type="submit" data-theme="b">Search studies</button> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
549 </div> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
550 </fieldset> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
551 </form> |
0 | 552 </div> |
3102
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
553 </div> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
554 |
0 | 555 |
3102
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
556 <div data-role="page" id="query-retrieve-2"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
557 <div data-role="header"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
558 <h1><span class="orthanc-name"></span>DICOM Query/Retrieve (2/4)</h1> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
559 <div data-type="horizontal" data-role="controlgroup" class="ui-btn-left"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
560 <a href="#lookup" data-icon="arrow-r" data-role="button" data-direction="reverse">Lookup</a> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
561 <a href="#plugins" data-icon="grid" data-role="button" data-direction="reverse">Plugins</a> |
1232
f1c01451a8ee
Introspection of plugins, Plugins can extend Orthanc Explorer with custom JavaScript
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1229
diff
changeset
|
562 </div> |
3102
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
563 <a href="#query-retrieve" data-icon="search" class="ui-btn-right" data-direction="reverse">Query/Retrieve</a> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
564 </div> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
565 <div data-role="content"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
566 <ul data-role="listview" data-inset="true" data-filter="true" data-split-icon="arrow-d" data-split-theme="b"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
567 </ul> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
568 </div> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
569 </div> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
570 |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
571 |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
572 <div data-role="page" id="query-retrieve-3"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
573 <div data-role="header"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
574 <h1><span class="orthanc-name"></span>DICOM Query/Retrieve (3/4)</h1> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
575 <div data-type="horizontal" data-role="controlgroup" class="ui-btn-left"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
576 <a href="#lookup" data-icon="arrow-r" data-role="button" data-direction="reverse">Lookup</a> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
577 <a href="#plugins" data-icon="grid" data-role="button" data-direction="reverse">Plugins</a> |
1232
f1c01451a8ee
Introspection of plugins, Plugins can extend Orthanc Explorer with custom JavaScript
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1229
diff
changeset
|
578 </div> |
3102
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
579 <a href="#query-retrieve" data-icon="search" class="ui-btn-right" data-direction="reverse">Query/Retrieve</a> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
580 </div> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
581 <div data-role="content"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
582 <ul data-role="listview" data-inset="true" data-filter="true"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
583 </ul> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
584 </div> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
585 </div> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
586 |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
587 |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
588 <div data-role="page" id="query-retrieve-4"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
589 <div data-role="header"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
590 <h1><span class="orthanc-name"></span>DICOM Query/Retrieve (4/4)</h1> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
591 <div data-type="horizontal" data-role="controlgroup" class="ui-btn-left"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
592 <a href="#lookup" data-icon="arrow-r" data-role="button" data-direction="reverse">Lookup</a> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
593 <a href="#plugins" data-icon="grid" data-role="button" data-direction="reverse">Plugins</a> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
594 </div> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
595 <a href="#query-retrieve" data-icon="search" class="ui-btn-right" data-direction="reverse">Query/Retrieve</a> |
1232
f1c01451a8ee
Introspection of plugins, Plugins can extend Orthanc Explorer with custom JavaScript
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1229
diff
changeset
|
596 </div> |
f1c01451a8ee
Introspection of plugins, Plugins can extend Orthanc Explorer with custom JavaScript
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1229
diff
changeset
|
597 |
3102
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
598 <div data-role="content"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
599 <form data-ajax="false" id="retrieve-form"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
600 <div data-role="fieldcontain"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
601 <label for="retrieve-target">Target AET:</label> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
602 <input type="text" name="retrieve-target" id="retrieve-target"></input> |
2594
7fbe3f024ac9
new screen in OrthancExplorer to list studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
603 </div> |
2573
3372c5255333
StoreScuJob, Orthanc Explorer for jobs
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
604 |
3372c5255333
StoreScuJob, Orthanc Explorer for jobs
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
605 <fieldset class="ui-grid-b"> |
3372c5255333
StoreScuJob, Orthanc Explorer for jobs
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
606 <div class="ui-block-a"></div> |
3102
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
607 <div class="ui-block-b"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
608 <button id="retrieve-submit" type="submit" data-theme="b">Retrieve</button> |
2573
3372c5255333
StoreScuJob, Orthanc Explorer for jobs
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
609 </div> |
3372c5255333
StoreScuJob, Orthanc Explorer for jobs
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
610 <div class="ui-block-c"></div> |
3102
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
611 </fieldset> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
612 </form> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
613 </div> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
614 </div> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
615 |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
616 |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
617 <div data-role="page" id="jobs"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
618 <div data-role="header"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
619 <h1><span class="orthanc-name"></span>Jobs</h1> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
620 <div data-type="horizontal" data-role="controlgroup" class="ui-btn-left"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
621 <a href="#lookup" data-icon="arrow-r" data-role="button" data-direction="reverse">Lookup</a> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
622 <a href="#plugins" data-icon="grid" data-role="button" data-direction="reverse">Plugins</a> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
623 </div> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
624 </div> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
625 <div data-role="content"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
626 <ul id="all-jobs" data-role="listview" data-inset="true" data-filter="true"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
627 </ul> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
628 </div> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
629 </div> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
630 |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
631 <div data-role="page" id="job"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
632 <div data-role="header"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
633 <h1><span class="orthanc-name"></span>Job</h1> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
634 <div data-type="horizontal" data-role="controlgroup" class="ui-btn-left"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
635 <a href="#lookup" data-icon="arrow-r" data-role="button" data-direction="reverse">Lookup</a> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
636 <a href="#plugins" data-icon="grid" data-role="button" data-direction="reverse">Plugins</a> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
637 </div> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
638 <div data-type="horizontal" data-role="controlgroup" class="ui-btn-right"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
639 <a href="#jobs" data-icon="refresh" data-role="button" data-direction="reverse">Jobs</a> |
2573
3372c5255333
StoreScuJob, Orthanc Explorer for jobs
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
640 </div> |
3372c5255333
StoreScuJob, Orthanc Explorer for jobs
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2293
diff
changeset
|
641 </div> |
3102
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
642 <div data-role="content"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
643 <ul data-role="listview" data-inset="true" data-filter="true" id="job-info"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
644 </ul> |
2119
e0517f25919e
Improved robustness of Orthanc Explorer wrt. query/retrieve (maybe fix issue 24)
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1501
diff
changeset
|
645 |
3102
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
646 <fieldset class="ui-grid-b"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
647 <div class="ui-block-a"></div> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
648 <div class="ui-block-b"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
649 <button id="job-cancel" data-theme="b">Cancel job</button> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
650 <button id="job-resubmit" data-theme="b">Resubmit job</button> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
651 <button id="job-pause" data-theme="b">Pause job</button> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
652 <button id="job-resume" data-theme="b">Resume job</button> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
653 </div> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
654 <div class="ui-block-c"></div> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
655 </fieldset> |
0 | 656 </div> |
3102
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
657 </div> |
0 | 658 |
3102
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
659 <div id="peer-store" style="display:none;" class="ui-body-c"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
660 <p align="center"><b>Sending to Orthanc peer...</b></p> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
661 <p><img src="libs/images/ajax-loader.gif" alt="" /></p> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
662 </div> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
663 |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
664 <div id="dicom-store" style="display:none;" class="ui-body-c"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
665 <p align="center"><b>Sending to DICOM modality...</b></p> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
666 <p><img src="libs/images/ajax-loader.gif" alt="" /></p> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
667 </div> |
1371
f528849ee9f7
DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1232
diff
changeset
|
668 |
3102
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
669 <div id="info-retrieve" style="display:none;" class="ui-body-c"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
670 <p align="center"><b>Retrieving images from DICOM modality...</b></p> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
671 <p><img src="libs/images/ajax-loader.gif" alt="" /></p> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
672 </div> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
673 |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
674 <div id="dialog" style="display:none"> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
675 </div> |
3533
2090ec6a83a5
create a default user if none is provided, while issuing a warning in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3334
diff
changeset
|
676 |
2090ec6a83a5
create a default user if none is provided, while issuing a warning in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3334
diff
changeset
|
677 <div id="template-insecure" style="display:none"> |
2090ec6a83a5
create a default user if none is provided, while issuing a warning in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3334
diff
changeset
|
678 <div class="warning-insecure ui-body ui-body-e"> |
2090ec6a83a5
create a default user if none is provided, while issuing a warning in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3334
diff
changeset
|
679 <h1>Insecure setup</h1> |
2090ec6a83a5
create a default user if none is provided, while issuing a warning in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3334
diff
changeset
|
680 <p> |
2090ec6a83a5
create a default user if none is provided, while issuing a warning in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3334
diff
changeset
|
681 Your Orthanc server is accepting remote connections, but is |
3534
cac8ffcb9cef
forcing AuthenticationEnabled to false is considered as insecure if remote access is allowed
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3533
diff
changeset
|
682 using the default username and password, or has user |
cac8ffcb9cef
forcing AuthenticationEnabled to false is considered as insecure if remote access is allowed
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3533
diff
changeset
|
683 authentication explicitly turned off. Please carefully read |
3533
2090ec6a83a5
create a default user if none is provided, while issuing a warning in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3334
diff
changeset
|
684 your logs and review your configuration, especially |
2090ec6a83a5
create a default user if none is provided, while issuing a warning in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3334
diff
changeset
|
685 options <tt>RemoteAccessAllowed</tt>, <tt>AuthenticationEnabled</tt>, |
2090ec6a83a5
create a default user if none is provided, while issuing a warning in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3334
diff
changeset
|
686 and <tt>RegisteredUsers</tt>. |
2090ec6a83a5
create a default user if none is provided, while issuing a warning in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3334
diff
changeset
|
687 </p> |
2090ec6a83a5
create a default user if none is provided, while issuing a warning in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3334
diff
changeset
|
688 </div> |
2090ec6a83a5
create a default user if none is provided, while issuing a warning in Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3334
diff
changeset
|
689 </div> |
3102
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
690 </body> |
9b18c8d4d459
'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents:
2873
diff
changeset
|
691 |
3109
6aa8d90aeee5
minor layout modification
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3102
diff
changeset
|
692 </html> |