-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproduct_concepts.html
94 lines (89 loc) · 5.18 KB
/
product_concepts.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<html>
<head>
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta content="DrugBank Product Concepts Example" name="description">
<title>DrugBank Product Concepts Example</title>
<meta content="DrugBank" name="application-name">
<script src="https://code.jquery.com/jquery-3.4.1.min.js" integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css" integrity="sha384-HSMxcRTRxnN+Bdg0JdbxYKrThecOKuH5zCYotlSAcp1+c8xmyTe9GYg1l9a69psu" crossorigin="anonymous">
<script src="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js" integrity="sha384-aJ21OjlMXNL5UyIl/XNwTMqvzeRMZH2w8c5cRVpzpU8Y5bApTppSuUkhZXN0VxHd" crossorigin="anonymous"></script>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/select2.min.css" rel="stylesheet" />
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/select2.min.js"></script>
<link href="https://cdnjs.cloudflare.com/ajax/libs/select2-bootstrap-theme/0.1.0-beta.10/select2-bootstrap.min.css" rel="stylesheet" />
<link rel="stylesheet" media="all" href="stylesheets/datatables.min.css">
<link rel="stylesheet" media="all" href="stylesheets/public.css">
<script src="javascripts/datatables.min.js"></script>
<script src="javascripts/prism.js"></script>
<script src="javascripts/product_concepts.js"></script>
</head>
<body class="c-guides-tutorials a-product_concepts">
<header></header>
<main class="container-fluid" role="main">
<div class="help-container main-container">
<div class="content-container">
<div class="help-content stretch-content tutorial-content" id="product-concepts-tutorial">
<div class="content-items">
<h3 id="select-a-specific-product-code">Product Concept Search</h3>
<p>Select a drug, route and strength below to find matching product concepts.</p>
<div class="example-box container-fluid" id="step-4">
<div class="row">
<div class="example-col col-sm-4">
<div id="loader"><img src="images/pill.gif" alt="Pill"></div>
<div class="form-group">
<label for="Drug">Drug</label>
<select name="drug_search_4" id="drug_search_4" class="drug_autocomplete" data-url="https://dev.drugbankplus.com/guides/tutorials/api_request" data-step="4"></select>
</div>
<div class="form-group">
<label for="Route">Route</label>
<select name="route_search_4" id="route_search_4" class="route_autocomplete" data-url="https://dev.drugbankplus.com/guides/tutorials/api_request" data-step="4"></select>
</div>
<div class="form-group">
<label for="Strength">Strength</label>
<select name="strength_search_4" id="strength_search_4" class="strength_autocomplete" data-url="https://dev.drugbankplus.com/guides/tutorials/api_request" data-step="4"></select>
</div>
</div>
<div class="code-col col-sm-8">
<ul class="nav nav-pills" role="tablist">
<li class="active" role="presentation"><a data-toggle="tab" href="#http-4" role="tab">Request</a></li>
<li role="presentation"><a data-toggle="tab" href="#api-4" role="tab">Response</a></li>
</ul>
<div class="tab-content">
<div class="tab-pane active" id="http-4" role="tabpanel">
<div class="example-header">HTTP Request</div>
<pre class=" language-http"><code class=" http-request language-http"></code></pre>
<div class="example-header">Shell Command</div>
<pre class="shell-box language-http"><code class=" shell-command language-http"></code></pre>
</div>
<div class="tab-pane" id="api-4" role="tabpanel">
<div class="example-header">API Response</div>
<pre class="api-box language-json"><code class=" api-response language-json"></code></pre>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-12">
<table class="table table-striped products-table">
<thead>
<tr role="row">
<th>Name</th>
<th>Dosage</th>
<th>Strength</th>
<th>Route</th>
<th>Labeller</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</main>
</html>