mirror of
https://github.com/alerta/alerta.git
synced 2025-01-15 13:48:46 +00:00
17 lines
241 B
HTML
17 lines
241 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Alerta Management URLs</title>
|
|
</head>
|
|
<body>
|
|
|
|
<h1>Management URLs</h1>
|
|
<ul>
|
|
{% for url in endpoints %}
|
|
<li>
|
|
<a href="{{ url }}">{{ url }}</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</body>
|
|
</html>
|