annotate OrthancExplorer/explorer.html @ 3166:6953a4e475b3

adding the logo in the explorer
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 25 Jan 2019 09:47:13 +0100
parents 6aa8d90aeee5
children af81263c025c
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
3959d33612cc initial commit
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
1 <!DOCTYPE html>
3959d33612cc initial commit
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
2
3959d33612cc initial commit
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
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
3959d33612cc initial commit
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
9
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
10 <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
11 <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
12 <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
13 <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
14 <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
15 <link rel="stylesheet" href="libs/slimbox2/slimbox2.css" />
0
3959d33612cc initial commit
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
16
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
17 <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
18 <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
19 <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
20 <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
21 <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
22 <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
23 <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
24 <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
25
9b18c8d4d459 'fix' 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 <!-- 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
27 <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
28 <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
29 <script src="libs/jquery-file-upload/js/jquery.fileupload.js"></script>
0
3959d33612cc initial commit
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
30
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
31 <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
32 <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
33 <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
34 <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
35 <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
36 </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
37
9b18c8d4d459 'fix' 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 <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
39 <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
40 <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
41 <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
42 <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
43 <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
44 <a href="#plugins" data-icon="grid" data-role="button" data-direction="reverse">Plugins</a>
0
3959d33612cc initial commit
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
45 </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
46 <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
47 <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
48 <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
49 <a href="#jobs" data-icon="refresh" data-role="button" data-direction="reverse">Jobs</a>
0
3959d33612cc initial commit
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
50 </div>
3959d33612cc initial commit
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
51 </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
52 <div data-role="content">
3166
6953a4e475b3 adding the logo in the explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 3109
diff changeset
53 <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
54 <p align="center">
6953a4e475b3 adding the logo in the explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 3109
diff changeset
55 <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
56 <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
57 </a>
6953a4e475b3 adding the logo in the explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 3109
diff changeset
58 </p>
6953a4e475b3 adding the logo in the explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 3109
diff changeset
59 </div>
6953a4e475b3 adding the logo in the explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 3109
diff changeset
60
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
61 <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
62 <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
63 <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
64 <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
65 </div>
0
3959d33612cc initial commit
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
66
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
67 <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
68 <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
69 <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
70 </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
71
9b18c8d4d459 'fix' 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 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
73 <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
74 <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
75 </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
76
9b18c8d4d459 'fix' 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 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
78 <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
79 <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
80 </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
81
9b18c8d4d459 'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents: 2873
diff changeset
82 <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
83 <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
84 <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
85 </select>
2594
7fbe3f024ac9 new screen in OrthancExplorer to list studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 2293
diff changeset
86 </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
87
9b18c8d4d459 'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents: 2873
diff changeset
88 <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
89 <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
90 <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
91 </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
92 <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
93 <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
94 </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
95 <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
96 <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
97 </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
98 </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
99 <div>&nbsp;</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
100 </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
101 <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
102 <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
103 <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
104 <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
105 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
106 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
107 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
108 </div>
703d1e848907 Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 2816
diff changeset
109 <div>&nbsp;</div>
703d1e848907 Orthanc Explorer: Lookup and limit the results to 100 patients/studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 2816
diff changeset
110 </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
111 <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
112 </ul>
7fbe3f024ac9 new screen in OrthancExplorer to list studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 2293
diff changeset
113 </div>
7fbe3f024ac9 new screen in OrthancExplorer to list studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 2293
diff changeset
114 </div>
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
115 </div>
2594
7fbe3f024ac9 new screen in OrthancExplorer to list studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 2293
diff changeset
116
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
117 <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
118 <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
119 <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
120 <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
121 <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
122 <a href="#plugins" data-icon="grid" data-role="button" data-direction="reverse">Plugins</a>
0
3959d33612cc initial commit
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
123 </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
124 <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
125 <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
126 <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
127 <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
128 </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
129 </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
130 <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
131 <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
132 <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
133 <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
134 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
135 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
136 specific patients!
0
3959d33612cc initial commit
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
137 </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
138 <div>&nbsp;</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
139 </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
140 <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
141 </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
142 </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
143 </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
144
9b18c8d4d459 'fix' 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 <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
146 <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
147 <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
148 <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
149 <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
150 <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
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 <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
153 <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
154 <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
155 <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
156 </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
157 </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
158 <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
159 <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
160 <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
161 <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
162 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
163 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
164 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
165 </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
166 <div>&nbsp;</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
167 </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
168 <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
169 </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
170 </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
171 </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
172
9b18c8d4d459 'fix' 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 <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
174 <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
175 <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
176 <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
177 <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
178 <a href="#plugins" data-icon="grid" data-role="button" data-direction="reverse">Plugins</a>
0
3959d33612cc initial commit
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
179 </div>
3959d33612cc initial commit
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
180 </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
181 <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
182 <div>
3109
6aa8d90aeee5 minor layout modification
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 3102
diff changeset
183 <!-- 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
184 actually hide it and create a "proxy" button that is
6aa8d90aeee5 minor layout modification
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 3102
diff changeset
185 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
186 <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
187 </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
188 <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
189 <ul data-role="listview" data-inset="true">
3109
6aa8d90aeee5 minor layout modification
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 3102
diff changeset
190 <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
191 <a href="#">Select files to upload ...</a>
6aa8d90aeee5 minor layout modification
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 3102
diff changeset
192 </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
193 <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
194 <!--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
195 <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
196 </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
197 <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
198 <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
199 <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
200 </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
201 </p>
3109
6aa8d90aeee5 minor layout modification
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 3102
diff changeset
202 <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
203 <h3>Warning:</h3> Orthanc issue #21: On Firefox, especially on
6aa8d90aeee5 minor layout modification
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 3102
diff changeset
204 Linux & OSX systems, files might be missing if using
6aa8d90aeee5 minor layout modification
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 3102
diff changeset
205 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
206 instead, or use the command-line "ImportDicomFiles.py" script.
6aa8d90aeee5 minor layout modification
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 3102
diff changeset
207 </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
208 <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
209 <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
210 </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
211 </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>
0
3959d33612cc initial commit
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
213
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
214 <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
215 <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
216 <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
217 <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
218 <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
219 <a href="#plugins" data-icon="grid" data-role="button" data-direction="reverse">Plugins</a>
0
3959d33612cc initial commit
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
220 </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
221 <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
222 <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
223 <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
224 <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
225 </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
226 </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
227 <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
228 <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
229 <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
230 <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
231 <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
232 </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
233 <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
234 <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
235 <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
236 <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
237 <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
238 </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
239 </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
240 </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
241 <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
242 <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
243 <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
244 <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
245 <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
246 </ul>
442
40deb6525337 improved buttons
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 405
diff changeset
247
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
248 <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
249 <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
250 <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
251 <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
252 </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
253 <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
254 <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
255 </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="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
257 <li data-icon="gear"><a href="#" id="patient-media">Download DICOMDIR</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>
0
3959d33612cc initial commit
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
259 </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
260 </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
261 <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
262 <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
263 <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
264 </ul>
0
3959d33612cc initial commit
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
265 </div>
3959d33612cc initial commit
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
266 </div>
3959d33612cc initial commit
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
267 </div>
3959d33612cc initial commit
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
268 </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
269 </div>
0
3959d33612cc initial commit
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
270
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 <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
272 <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
273 <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
274 <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
275 <a href="#" class="patient-link">Patient</a> &raquo;
9b18c8d4d459 'fix' 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 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
277 </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
278 <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
279 <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
280 <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
281 </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
282 <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
283 <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
284 <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
285 <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
286 </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
287 </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
288 <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
289 <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
290 <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
291 <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
292 <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
293 </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
294
9b18c8d4d459 'fix' 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 <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
296 <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
297 <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
298 <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
299 <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
300 </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
301
9b18c8d4d459 'fix' 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 <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
303 <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
304 <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
305 <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
306 </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
307 <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
308 <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
309 </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="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
311 <li data-icon="gear"><a href="#" id="study-media">Download DICOMDIR</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 </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
313 </div>
2594
7fbe3f024ac9 new screen in OrthancExplorer to list studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 2293
diff changeset
314 </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
315 <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
316 <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
317 <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
318 </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
319 </div>
1371
f528849ee9f7 DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 1232
diff changeset
320 </div>
0
3959d33612cc initial commit
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
321 </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
322 </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
323 </div>
442
40deb6525337 improved buttons
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 405
diff changeset
324
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
325 <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
326 <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
327 <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
328 <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
329 <a href="#" class="patient-link">Patient</a> &raquo;
9b18c8d4d459 'fix' 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 <a href="#" class="study-link">Study</a> &raquo;
9b18c8d4d459 'fix' 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 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
332 </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
333 <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
334 <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
335 <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
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 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
338 <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
339 <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
340 <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
341 </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
342 </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
343 <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
344 <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
345 <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
346 <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
347 <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
348 </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
349
9b18c8d4d459 'fix' 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 <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
351 <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
352 <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
353 <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
354 <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
355 </ul>
442
40deb6525337 improved buttons
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 405
diff changeset
356
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
357 <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
358 <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
359 <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
360 <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
361 </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
362 <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
363 <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
364 </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
365 <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
366 <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
367 <li data-icon="gear"><a href="#" id="series-media">Download DICOMDIR</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 </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
369 </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
370 </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
371 <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
372 <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
373 <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
374 </ul>
0
3959d33612cc initial commit
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
375 </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
376 </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
377 </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
378 </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
379 </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
380
9b18c8d4d459 'fix' 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 <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
382 <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
383 <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
384 <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
385 <a href="#" class="patient-link">Patient</a> &raquo;
9b18c8d4d459 'fix' 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 <a href="#" class="study-link">Study</a> &raquo;
9b18c8d4d459 'fix' 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 <a href="#" class="series-link">Series</a> &raquo;
9b18c8d4d459 'fix' 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 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
389 </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
390 <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
391 <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
392 <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
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 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
395 <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
396 <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
397 <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
398 </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
399 </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
400 <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
401 <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
402 <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
403 <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
404 <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
405 </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
406
9b18c8d4d459 'fix' 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 <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
408 <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
409 <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
410 <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
411 </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
412
9b18c8d4d459 'fix' 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 <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
414 <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
415 <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
416 <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
417 </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
418 <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
419 <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
420 </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
421 <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
422 <li data-icon="arrow-d"><a href="#" id="instance-download-json">Download the JSON 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
423 <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
424 </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
425 </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
426 </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
427 <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
428 <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
429 <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
430 <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
431 <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
432 <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
433 <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
434 </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
435 <div id="dicom-tree"></div>
0
3959d33612cc initial commit
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
436 </div>
3959d33612cc initial commit
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
437 </div>
3959d33612cc initial commit
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
438 </div>
3959d33612cc initial commit
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
439 </div>
3959d33612cc initial commit
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
440 </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
441 </div>
442
40deb6525337 improved buttons
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 405
diff changeset
442
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
443 <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
444 <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
445 <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
446 <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
447 <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
448 <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
449 </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
450 </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
451 <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
452 <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
453 </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
454 </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
455 </div>
442
40deb6525337 improved buttons
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 405
diff changeset
456
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 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
458 <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
459 <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
460 <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
461 <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
462 <a href="#plugins" data-icon="grid" data-role="button" data-direction="reverse">Plugins</a>
0
3959d33612cc initial commit
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
463 </div>
3959d33612cc initial commit
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
464 </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
465 <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
466 <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
467 <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
468 <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
469 <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
470 </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
471 </div>
0
3959d33612cc initial commit
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
472
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
473 <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
474 <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
475 <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
476 <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
477 <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
478 <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
479 <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
480 <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
481 <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
482 <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
483 <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
484 </fieldset>
2594
7fbe3f024ac9 new screen in OrthancExplorer to list studies
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 2293
diff changeset
485 </div>
442
40deb6525337 improved buttons
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 405
diff changeset
486
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="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
488 <label for="qr-value">Value for this field:</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
489 <input type="text" name="qr-value" id="qr-value" 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
490 </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
491
9b18c8d4d459 'fix' 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 <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
493 <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
494 <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
495 </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
496 </div>
442
40deb6525337 improved buttons
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 405
diff changeset
497
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
498 <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
499 <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
500 <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
501 <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
502 <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
503 <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
504 <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
505 <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
506 <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
507 <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
508 <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
509 <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
510 <input type="checkbox" name="DX" id="qr-dx" class="custom" /> <label for="qr-dx">DX</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
511 </fieldset>
0
3959d33612cc initial commit
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
512 </div>
3959d33612cc initial commit
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
513 </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
514
9b18c8d4d459 'fix' 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 <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
516 <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
517 <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
518 </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
519 <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
520 <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
521 </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
522 </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
523 </form>
0
3959d33612cc initial commit
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
524 </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
525 </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
526
0
3959d33612cc initial commit
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
527
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
528 <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
529 <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
530 <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
531 <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
532 <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
533 <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
534 </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
535 <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
536 </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
537 <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
538 <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
539 </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
540 </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
541 </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
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
9b18c8d4d459 'fix' 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 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
545 <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
546 <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
547 <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
548 <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
549 <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
550 </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
551 <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
552 </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
553 <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
554 <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
555 </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
556 </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
557 </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
558
9b18c8d4d459 'fix' 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
9b18c8d4d459 'fix' 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 <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
561 <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
562 <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
563 <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
564 <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
565 <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
566 </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
567 <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
568 </div>
f1c01451a8ee Introspection of plugins, Plugins can extend Orthanc Explorer with custom JavaScript
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 1229
diff changeset
569
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
570 <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
571 <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
572 <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
573 <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
574 <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
575 </div>
2573
3372c5255333 StoreScuJob, Orthanc Explorer for jobs
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 2293
diff changeset
576
3372c5255333 StoreScuJob, Orthanc Explorer for jobs
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 2293
diff changeset
577 <fieldset class="ui-grid-b">
3372c5255333 StoreScuJob, Orthanc Explorer for jobs
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 2293
diff changeset
578 <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
579 <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
580 <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
581 </div>
3372c5255333 StoreScuJob, Orthanc Explorer for jobs
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 2293
diff changeset
582 <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
583 </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
584 </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
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 </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
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
9b18c8d4d459 'fix' 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="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
590 <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
591 <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
592 <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
593 <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
594 <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
595 </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
596 </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
597 <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
598 <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
599 </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
600 </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
601 </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
602
9b18c8d4d459 'fix' for Orthanc issue 21: added a select file button + a warning specific for Firefox users
Alain Mazy <alain@mazy.be>
parents: 2873
diff changeset
603 <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
604 <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
605 <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
606 <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
607 <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
608 <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
609 </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
610 <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
611 <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
612 </div>
3372c5255333 StoreScuJob, Orthanc Explorer for jobs
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 2293
diff changeset
613 </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
614 <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
615 <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
616 </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
617
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
618 <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
619 <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
620 <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
621 <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
622 <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
623 <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
624 <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
625 </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
626 <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
627 </fieldset>
0
3959d33612cc initial commit
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
628 </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
629 </div>
0
3959d33612cc initial commit
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
630
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
631 <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
632 <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
633 <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
634 </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
635
9b18c8d4d459 'fix' 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 <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
637 <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
638 <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
639 </div>
1371
f528849ee9f7 DICOM Query/Retrieve available from Orthanc Explorer
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 1232
diff changeset
640
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
641 <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
642 <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
643 <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
644 </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
645
9b18c8d4d459 'fix' 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 <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
647 </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 </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
649
3109
6aa8d90aeee5 minor layout modification
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 3102
diff changeset
650 </html>