Skip to content

Commit

Permalink
feat: add dependancy dashboard
Browse files Browse the repository at this point in the history
  • Loading branch information
miketrebilcock committed Sep 16, 2021
1 parent d50fc2d commit 06b088c
Showing 1 changed file with 82 additions and 0 deletions.
82 changes: 82 additions & 0 deletions dependancies.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
<!DOCTYPE html>
<html lang="en">

<head>
<title>Patient List</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!--Libraries-->
<link rel="stylesheet" href="scripts/libraries/css/bootstrap.min.css">

<script src="scripts/libraries/js/jquery-3.6.0.min.js"></script>
<script src="scripts/libraries/js/bootstrap.bundle.min.js"></script>
<script src="scripts/libraries/js/jquery.csv.min.js"></script>
<script src="scripts/libraries/js/jquery.qrcode.min.js"></script>

<!--Custom scripts-->
<link rel="stylesheet" href="scripts/style.css">


</head>

<body>

<div id="input-modal" class="container mt-5">
<div id="page-1">
<h1>COVID Vaccine QR Generator 3.12</h1>
<p>An open-source tool that allows you to convert a CSV list of patients into a printable pack of
patient
slips to
make using Pinnacle a breeze.</p>
<div class="card">
<div class="card-body">
<h3>Dependancies</h3>
<table>
<tr>
<th>Dependancy</th>
<th>Licence</th>
<th>Latest Version</th>
<th>Version in use</th>
<th>Link</th>
</tr>
<tr>
<td>JQuery</td>
<td>MIT</td>
<td><img src="https://img.shields.io/github/release/jquery/jquery" /></td>
<td>3.6.0</td>
<td><a href="https://github.com/jquery/jquery">https://github.com/jquery/jquery</a></td>
</tr>
<tr>
<td>jquery-csv</td>
<td>MIT</td>
<td><img src="https://img.shields.io/github/release/evanplaice/jquery-csv.svg" /></td>
<td>v1.0.21</td>
<td><a
href="https://github.com/evanplaice/jquery-csv">https://github.com/evanplaice/jquery-csv</a>
</td>
</tr>
<tr>
<td>jquery-qrcode</td>
<td>MIT</td>
<td>21 Jun 2018</td>
<td>21 Jun 2018</td>
<td><a
href="https://github.com/jeromeetienne/jquery-qrcode">https://github.com/jeromeetienne/jquery-qrcode</a>
</td>
</tr>
<tr>
<td>bootstrap</td>
<td>MIT</td>
<td><img src="https://img.shields.io/github/release/twbs/bootstrap" /></td>
<td>v5.1.1</td>
<td><a href="https://github.com/twbs/bootstrap">https://github.com/twbs/bootstrap</a>
</td>
</tr>
</table>
</div>
</div>
</div>
</div>
</body>

</html>

0 comments on commit 06b088c

Please sign in to comment.