lookyloo/website/web/templates/cookie_name.html

34 lines
659 B
HTML
Raw Normal View History

{% from "macros.html" import shorten_string %}
{% if from_popup %}
2020-06-15 16:17:09 +02:00
{% extends "main.html" %}
{% from 'bootstrap5/utils.html' import render_messages %}
{% block title %}{{ cookie_name }}{% endblock %}
{%endif%}
2020-06-15 16:17:09 +02:00
{% block content %}
{% if from_popup %}
<center><button class="btn btn-primary goBack" type="button">Go Back</button></center>
{%endif%}
<center>
<h4>{{ cookie_name }}</h4>
</center>
<table id="cookieNameTable" class="table table-striped" style="width:100%" data-cookiename="{{cookie_name}}">
<thead>
<tr>
<th>Capture Time</th>
<th>Capture Title</th>
<th>Landing Page</th>
</tr>
</thead>
</table>
2020-06-15 16:17:09 +02:00
{% endblock %}