2024-05-14 16:08:38 +02:00
|
|
|
{% from "macros.html" import shorten_string %}
|
|
|
|
|
2024-11-08 20:44:53 +01:00
|
|
|
{% if from_popup %}
|
|
|
|
{% extends "main.html" %}
|
|
|
|
|
|
|
|
{% from 'bootstrap5/utils.html' import render_messages %}
|
|
|
|
|
|
|
|
{% block title %}{{ hostname }}{% endblock %}
|
|
|
|
|
|
|
|
{%endif%}
|
|
|
|
|
2021-03-18 00:40:14 +01:00
|
|
|
{% block content %}
|
2024-05-14 16:08:38 +02:00
|
|
|
|
2024-11-08 20:44:53 +01:00
|
|
|
{% if from_popup %}
|
|
|
|
<center><button class="btn btn-primary goBack" type="button">Go Back</button></center>
|
|
|
|
{%endif%}
|
|
|
|
|
2024-05-14 16:08:38 +02:00
|
|
|
<center>
|
|
|
|
<h4>{{ hostname }}</h4>
|
|
|
|
</center>
|
|
|
|
|
2024-11-26 20:42:30 +01:00
|
|
|
<table id="hostnameTable" class="table table-striped" style="width:100%" data-hostname="{{hostname}}">
|
2024-05-14 16:08:38 +02:00
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>Capture Time</th>
|
|
|
|
<th>Capture Title</th>
|
|
|
|
<th>Landing page</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
</table>
|
2021-03-18 00:40:14 +01:00
|
|
|
{% endblock %}
|