2022-10-30 14:50:22 +01:00
|
|
|
<!DOCTYPE html>
|
2020-05-09 19:09:27 +02:00
|
|
|
<html>
|
2020-05-23 12:32:36 +02:00
|
|
|
|
|
|
|
<head>
|
2022-10-30 14:50:22 +01:00
|
|
|
<title>QRZ FRS users database</title>
|
2020-05-09 19:09:27 +02:00
|
|
|
<link rel="stylesheet" type="text/css" href="static/css/main.css" media="screen">
|
|
|
|
<link rel="stylesheet" type="text/css" href="static/css/font-awesome/all.css">
|
2020-08-16 15:52:35 +02:00
|
|
|
<link rel="stylesheet" type="text/css" href="static/css/bootstrap.css">
|
2020-06-02 02:17:50 +02:00
|
|
|
<link rel="stylesheet" type="text/css" href="static/css/dataTables.bootstrap4.min.css">
|
2020-08-16 15:52:35 +02:00
|
|
|
<link rel="stylesheet" type="text/css" href="static/css/responsive.dataTables.min.css">
|
|
|
|
<link rel="stylesheet" type="text/css" href="static/css/rowReorder.dataTables.min.css">
|
|
|
|
|
2020-05-23 12:32:36 +02:00
|
|
|
|
2022-10-30 14:50:22 +01:00
|
|
|
<script src="static/js/jquery.js"></script>
|
|
|
|
<script src="static/js/jquery.dataTables.min.js"></script>
|
|
|
|
<script src="static/js/bootstrap.min.js"></script>
|
|
|
|
<script src="static/js/dataTables.bootstrap4.min.js"></script>
|
|
|
|
<script src="static/js/axios.min.js"></script>
|
|
|
|
<script src="static/js/vue.min.js"></script>
|
|
|
|
<script src="static/js/datatable.min.js"></script>
|
|
|
|
<script src="static/js/functions.js"></script>
|
2020-05-23 12:32:36 +02:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
2020-12-27 15:59:48 +01:00
|
|
|
<h1 class="display-3">QRZ FRS users database</h1>
|
|
|
|
<p>Indexed mirror of <a href="http://groupe-frs.hamstation.eu">http://groupe-frs.hamstation.eu</a> list of users</p>
|
2020-05-23 12:32:36 +02:00
|
|
|
<div>
|
2020-06-02 02:17:50 +02:00
|
|
|
<table id="main_table" class="display table table-hover">
|
2020-05-23 12:32:36 +02:00
|
|
|
<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>
|
2020-05-23 13:38:20 +02:00
|
|
|
<!--<select id="countries" v-model="selected">
|
|
|
|
<option v-for="option in options" v-bind:value="option.value">
|
|
|
|
{{ "{{ option.text }}" }}
|
|
|
|
</option>
|
|
|
|
</select>-->
|
2020-05-23 12:32:36 +02:00
|
|
|
<input type="button" value="Export CSV" onclick="export_frs()">
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
|
2020-06-06 15:02:30 +02:00
|
|
|
</html>
|