feat: geo risk scores
This commit is contained in:
parent
315dae7f06
commit
0e0d499428
17 changed files with 558 additions and 54 deletions
|
@ -1,6 +1,6 @@
|
|||
{% extends "base.html.j2" %}
|
||||
{% from 'bootstrap5/form.html' import render_form %}
|
||||
{% from "tables.html.j2" import alarms_table, bridges_table, proxies_table %}
|
||||
{% from "tables.html.j2" import alarms_table, bridges_table, countries_table, proxies_table %}
|
||||
|
||||
{% block content %}
|
||||
<h1 class="h2 mt-3">Origins</h1>
|
||||
|
@ -14,6 +14,10 @@
|
|||
{{ render_form(form) }}
|
||||
</div>
|
||||
|
||||
<h3>Countries</h3>
|
||||
<p><a href="{{ url_for("portal.origin.origin_country_add", origin_id=origin.id) }}" class="btn btn-sm btn-success">Add Country</a></p>
|
||||
{{ countries_table(origin.countries, origin) }}
|
||||
|
||||
{% if origin.alarms %}
|
||||
<h3>Alarms</h3>
|
||||
{{ alarms_table(origin.alarms) }}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue