mirror of https://github.com/CIRCL/lookyloo
16 lines
331 B
HTML
16 lines
331 B
HTML
{% extends "main.html" %}
|
|
|
|
{% block title %}Details for hostname {% endblock %}
|
|
|
|
{% block scripts %}
|
|
<script>
|
|
function whereAmI() {
|
|
window.opener.ProcessChildMessage("{{ hostname_uuid }}");
|
|
};
|
|
</script>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<button onclick="whereAmI()">Where am I</button>
|
|
{% endblock %}
|