From f9b99ce66f56995a29709e9bf24750dab9430767 Mon Sep 17 00:00:00 2001 From: Cara Salter Date: Wed, 21 Sep 2022 21:33:40 -0400 Subject: bunch of features registration, logging out, listing networks, user profiles --- app/templates/network_list.html | 42 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 app/templates/network_list.html (limited to 'app/templates/network_list.html') diff --git a/app/templates/network_list.html b/app/templates/network_list.html new file mode 100644 index 0000000..f56c6dc --- /dev/null +++ b/app/templates/network_list.html @@ -0,0 +1,42 @@ +{% extends 'base.html' %} + +{% block content %} +

Managed Network Subnets

+ + + + + + + + + + + + + {% for n in nets %} + + + + + + + + {% endfor %} + +
IDSubnetDescriptionManagerDelete
{{n.id}}{{n.subnet}}{{n.description}}{{n.manager_id}}Delete
+ +

Want to add another one?

+
+ {{form.csrf_token}} +
+ {{form.description.label}} {{form.description}} +
+
+ {{form.subnet.label}} {{form.subnet}} +
+
+ {{form.submit}} +
+
+{% endblock %} -- cgit v1.2.3