spiderweb/templates/callsign.html

20 lines
553 B
HTML
Raw Normal View History

2021-11-28 17:31:32 +00:00
{% extends "index.html" %}
2021-11-18 16:41:49 +00:00
<head>
2023-01-07 22:15:43 +00:00
{% block title %}
<title>Spot search for a specific Callsign</title>
{% endblock %}
2021-11-18 16:41:49 +00:00
</head>
2023-01-07 22:15:43 +00:00
{% block titles %}
<h1 class="display-4 text-white">{{callsign}}</h1>
<p class="lead text-light">Some statistics about this callsign</p>
{% endblock %}
{% block filters %}
2023-01-23 18:10:19 +00:00
<div class="row mx-auto">
{% endblock filters %}
{% block app_data %}
{{ super() }}
var callsign = '{{callsign}}';
{% endblock app_data %}
{% block inline_scripts %}
2023-11-15 20:37:41 +00:00
<script defer src="static/js/rel/callsign_inline.min.js"></script>
2023-01-23 18:10:19 +00:00
{% endblock %}