mirror of https://github.com/CIRCL/lookyloo
chg: back buttons, more tooltips
parent
b85c2b85a3
commit
8ebc071b71
|
@ -23,7 +23,10 @@
|
||||||
|
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<center><h4>{{ body_hash }}</h4></center>
|
<center>
|
||||||
|
<h4>{{ body_hash }}</h4>
|
||||||
|
<button onclick="window.history.back();" class="btn btn-primary" type="button">Go Back</button>
|
||||||
|
</center>
|
||||||
<div class="table-responsive">
|
<div class="table-responsive">
|
||||||
<table id="table" class="table" style="width:96%">
|
<table id="table" class="table" style="width:96%">
|
||||||
<thead>
|
<thead>
|
||||||
|
|
|
@ -23,7 +23,10 @@
|
||||||
|
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<center><h2>{{ cookie_name }}</h4></center>
|
<center>
|
||||||
|
<h2>{{ cookie_name }}</h2>
|
||||||
|
<button onclick="window.history.back();" class="btn btn-primary" type="button">Go Back</button>
|
||||||
|
</center>
|
||||||
<div class="table-responsive">
|
<div class="table-responsive">
|
||||||
<table id="table" class="table" style="width:96%">
|
<table id="table" class="table" style="width:96%">
|
||||||
<thead>
|
<thead>
|
||||||
|
|
|
@ -111,7 +111,11 @@
|
||||||
|
|
||||||
<li class="list-group-item">
|
<li class="list-group-item">
|
||||||
{# Details of the response #}
|
{# Details of the response #}
|
||||||
<p class="h4">Response <small>(Status code: <span title={{ http_status_description(url['url_object'].response['status']) }}>{{ url['url_object'].response['status'] }})</span></small></p>
|
<p class="h4">Response
|
||||||
|
<small>(Status code:
|
||||||
|
<span title="{{ http_status_description(url['url_object'].response['status']) }}">{{ url['url_object'].response['status'] }})</span>
|
||||||
|
</small>
|
||||||
|
</p>
|
||||||
{{ popup_icons(keys_response, url['url_object'], tree_uuid) }}
|
{{ popup_icons(keys_response, url['url_object'], tree_uuid) }}
|
||||||
|
|
||||||
{% if url['url_object'].empty_response %}
|
{% if url['url_object'].empty_response %}
|
||||||
|
|
|
@ -106,7 +106,7 @@
|
||||||
</a>
|
</a>
|
||||||
{% elif key == "redirect" %}
|
{% elif key == "redirect" %}
|
||||||
{% for child in urlnode.children if child.name == urlnode.redirect_url %}
|
{% for child in urlnode.children if child.name == urlnode.redirect_url %}
|
||||||
<a href="" role="button" onclick="whereAmI('{{ child.hostnode_uuid }}')" title="See the node the URL redirects to.">
|
<a href="#/" role="button" onclick="whereAmI('{{ child.hostnode_uuid }}')" title="See the node the URL redirects to.">
|
||||||
<img src="{{ path }}" alt="{{ key }}" width="21" height="21"/>
|
<img src="{{ path }}" alt="{{ key }}" width="21" height="21"/>
|
||||||
</a>
|
</a>
|
||||||
{% else %}
|
{% else %}
|
||||||
|
|
Loading…
Reference in New Issue