mirror of https://github.com/CIRCL/lookyloo
32 lines
646 B
HTML
32 lines
646 B
HTML
{% from "macros.html" import shorten_string %}
|
|
|
|
{% if from_popup %}
|
|
{% extends "main.html" %}
|
|
|
|
{% from 'bootstrap5/utils.html' import render_messages %}
|
|
|
|
{% block title %}{{ hostname }}{% endblock %}
|
|
|
|
{%endif%}
|
|
|
|
{% block content %}
|
|
|
|
{% if from_popup %}
|
|
<center><button class="btn btn-primary goBack" type="button">Go Back</button></center>
|
|
{%endif%}
|
|
|
|
<center>
|
|
<h4>{{ hostname }}</h4>
|
|
</center>
|
|
|
|
<table id="hostnameTable" class="table table-striped" style="width:100%" data-hostname="{{hostname}}">
|
|
<thead>
|
|
<tr>
|
|
<th>Capture Time</th>
|
|
<th>Capture Title</th>
|
|
<th>Landing page</th>
|
|
</tr>
|
|
</thead>
|
|
</table>
|
|
{% endblock %}
|