lookyloo/website/web/templates/url.html

32 lines
628 B
HTML

{% from "macros.html" import shorten_string %}
{% if from_popup %}
{% extends "main.html" %}
{% from 'bootstrap5/utils.html' import render_messages %}
{% block title %}{{ url }}{% endblock %}
{%endif%}
{% block content %}
{% if from_popup %}
<center><button class="btn btn-primary goBack" type="button">Go Back</button></center>
{%endif%}
<center>
<h4>{{ url }}</h4>
</center>
<table id="urlTable" class="table table-striped" style="width:100%" data-url="{{url_quoted}}">
<thead>
<tr>
<th>Capture Time</th>
<th>Capture Title</th>
<th>Landing page</th>
</tr>
</thead>
</table>
{% endblock %}