49 lines
1.7 KiB
HTML
49 lines
1.7 KiB
HTML
<html>
|
|
|
|
<head>
|
|
<link rel="stylesheet" type="text/css" href="static/css/main.css" media="screen">
|
|
<link rel="stylesheet" type="text/css" href="static/css/jquery.dataTables.min.css" media="screen">
|
|
<link rel="stylesheet" type="text/css" href="static/css/font-awesome/all.css">
|
|
<link rel="stylesheet" type="text/css" href="static/css/bootstrap.min.css">
|
|
<link rel="stylesheet" type="text/css" href="static/css/dataTables.bootstrap4.min.css">
|
|
|
|
<script type="text/javascript" src="static/js/jquery.js"></script>
|
|
<script type="text/javascript" src="static/js/jquery.dataTables.min.js"></script>
|
|
<script type="text/javascript" src="static/js/bootstrap.min.js"></script>
|
|
<script type="text/javascript" src="static/js/axios.min.js"></script>
|
|
<script type="text/javascript" src="static/js/vue.min.js"></script>
|
|
<script type="text/javascript" src="static/js/datatable.js"></script>
|
|
<script type="text/javascript" src="static/js/functions.js"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<h1 class="jumbotron-heading">FRS QRZ database</h1>
|
|
<p>Mirror of <a href="http://groupe-frs.hamstation.eu">http://groupe-frs.hamstation.eu</a> list of users</p>
|
|
<div>
|
|
<table id="main_table" class="display table table-hover">
|
|
<thead class="thead-dark">
|
|
<tr>
|
|
<td>QRZ</td>
|
|
<td>Name</td>
|
|
<td>City</td>
|
|
<td>Department</td>
|
|
<td>Country</td>
|
|
<td>DMRID</td>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<div>
|
|
<!--<select id="countries" v-model="selected">
|
|
<option v-for="option in options" v-bind:value="option.value">
|
|
{{ "{{ option.text }}" }}
|
|
</option>
|
|
</select>-->
|
|
<input type="button" value="Export CSV" onclick="export_frs()">
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|