spiderweb/templates/callsign.html
2023-11-15 21:37:41 +01:00

20 lines
553 B
HTML

{% extends "index.html" %}
<head>
{% block title %}
<title>Spot search for a specific Callsign</title>
{% endblock %}
</head>
{% block titles %}
<h1 class="display-4 text-white">{{callsign}}</h1>
<p class="lead text-light">Some statistics about this callsign</p>
{% endblock %}
{% block filters %}
<div class="row mx-auto">
{% endblock filters %}
{% block app_data %}
{{ super() }}
var callsign = '{{callsign}}';
{% endblock app_data %}
{% block inline_scripts %}
<script defer src="static/js/rel/callsign_inline.min.js"></script>
{% endblock %}