lookyloo/website/web/templates/body_hash.html

34 lines
724 B
HTML
Raw Normal View History

{% from "macros.html" import shorten_string %}
{% if from_popup %}
{% extends "main.html" %}
{% from 'bootstrap5/utils.html' import render_messages %}
{% block title %}{{ body_hash }}{% endblock %}
{%endif%}
{% block content %}
{% if from_popup %}
<center><button class="btn btn-primary goBack" type="button">Go Back</button></center>
{%endif%}
<center>
<h6>{{ body_hash }}</h6>
<a href="{{ url_for('ressource_by_hash', sha512=body_hash) }}">Download</a>
</center>
2024-12-02 13:40:36 +01:00
<table id="bodyHashDetailsTable" class="table table-striped" style="width:100%" data-bodyhash="{{body_hash}}">
<thead>
<tr>
<th>Capture Time</th>
<th>Capture Title</th>
<th>URL</th>
</tr>
</thead>
</table>
{% endblock %}