lookyloo/website/web/templates/hostname_popup.html

16 lines
331 B
HTML
Raw Normal View History

2020-05-18 18:35:20 +02:00
{% 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 %}