chg: back buttons, more tooltips

pull/81/head
Raphaël Vinot 2020-08-07 15:14:13 +02:00
parent b85c2b85a3
commit 8ebc071b71
4 changed files with 14 additions and 4 deletions

View File

@ -23,7 +23,10 @@
{% 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">
<table id="table" class="table" style="width:96%">
<thead>

View File

@ -23,7 +23,10 @@
{% 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">
<table id="table" class="table" style="width:96%">
<thead>

View File

@ -111,7 +111,11 @@
<li class="list-group-item">
{# 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) }}
{% if url['url_object'].empty_response %}

View File

@ -106,7 +106,7 @@
</a>
{% elif key == "redirect" %}
{% 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"/>
</a>
{% else %}