2024-11-08 20:44:53 +01:00
|
|
|
{% from "macros.html" import shorten_string %}
|
|
|
|
|
|
|
|
{% if from_popup %}
|
2020-06-15 16:17:09 +02:00
|
|
|
{% extends "main.html" %}
|
|
|
|
|
2024-11-08 20:44:53 +01:00
|
|
|
{% from 'bootstrap5/utils.html' import render_messages %}
|
|
|
|
|
|
|
|
{% block title %}{{ cookie_name }}{% endblock %}
|
|
|
|
|
|
|
|
{%endif%}
|
2020-06-15 16:17:09 +02:00
|
|
|
|
|
|
|
|
|
|
|
{% block content %}
|
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-10-07 20:45:08 +02:00
|
|
|
<center>
|
|
|
|
<h4>{{ cookie_name }}</h4>
|
|
|
|
</center>
|
|
|
|
|
2024-12-03 00:05:08 +01:00
|
|
|
<table id="cookieNameTable" class="table table-striped" style="width:100%" data-cookiename="{{cookie_name}}">
|
2024-10-07 20:45:08 +02:00
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>Capture Time</th>
|
|
|
|
<th>Capture Title</th>
|
2024-12-03 00:05:08 +01:00
|
|
|
<th>Landing Page</th>
|
2024-10-07 20:45:08 +02:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
</table>
|
2020-06-15 16:17:09 +02:00
|
|
|
{% endblock %}
|