aboutsummaryrefslogtreecommitdiff
path: root/central/src/main/resources/manage/index.ftlh
blob: d56c9aa3e7a3f2fcf7083c73647412f0fbf19c31 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <#include "../style.ftlh">
    <title>Manage your peering</title>
</head>
<body class="markdown-body">
<h1>Manage your peering</h1>
<p>You are logged in as: ${asn}.</p>
<h2>Peers</h2>
<p><a href="/manage/new">New Peer</a></p>
<table style="width: 100%">
    <tr>
        <th>IP</th>
        <th>Method</th>
        <th>Actions</th>
    </tr>
    <#list peers as peer>
    <tr>
        <td>${peer.ipv4}<#if peer.ipv6??><br />${peer.ipv6}</#if></td>
        <td>${peer.type}</td>
        <td><a href="/manage/edit?id=${peer.id}">Edit</a> |
        <a href="/manage/show-configuration?id=${peer.id}">Example Conf</a></td>
    </tr>
    </#list>
</table>
<h2>More Actions</h2>
<a href="/manage/change-password">Change Password</a> |
<a href="/manage/delete-account">Delete My Account</a>
</body>
</html>