We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f48474 commit c3e5dd4Copy full SHA for c3e5dd4
templates/GOD.html
@@ -0,0 +1,14 @@
1
+{% extends 'base_action.html' %}
2
+
3
+{% block sub_table %}
4
+{% for ip in ip2role_index_name.keys() %}
5
+<tr>
6
+ <td>
7
+ {{ ip2role_index_name[ip][0] }}
8
+ </td>
9
10
+ {{ ip2role_index_name[ip][2] }}
11
12
+</tr>
13
+{% endfor %}
14
+{% endblock %}
templates/base_action.html
@@ -0,0 +1,10 @@
+<!doctype html>
+<head>
+ <title>{% block title %}{% endblock %}</title>
+ <link rel = "icon" href="static/images/roles/{{ image_name }}.png" type = "image/x-icon">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
+</head>
+<table>
+ {% block sub_table %}{% endblock %}
+</table>
0 commit comments