lookyloo/website/web/templates/misp_lookup.html

24 lines
530 B
HTML
Raw Normal View History

2021-06-02 00:35:35 +02:00
{% from "macros.html" import shorten_string %}
<div>
<center><h1 class="display-4">MISP hits</h1></center>
{% if hits %}
{% for value, entries in hits.items() %}
{% if entries %}
<h3>{{value}}</h3>
<hr>
{% if entries is mapping %}
{{ entries }}
{% elif entries is sequence %}
<ul>
{% for entry in entries %}
<li>{{misp_root_url}}/events/{{entry}}</li>
{% endfor %}
</ul>
{% endif %}
{% endif %}
{% endfor %}
{% else %}
No hits
{% endif %}