Skip to content

Commit c3e5dd4

Browse files
committed
add : GOD page added.
1 parent 8f48474 commit c3e5dd4

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed

templates/GOD.html

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
<td>
10+
{{ ip2role_index_name[ip][2] }}
11+
</td>
12+
</tr>
13+
{% endfor %}
14+
{% endblock %}

templates/base_action.html

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<!doctype html>
2+
<head>
3+
<title>{% block title %}{% endblock %}</title>
4+
<link rel = "icon" href="static/images/roles/{{ image_name }}.png" type = "image/x-icon">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
7+
</head>
8+
<table>
9+
{% block sub_table %}{% endblock %}
10+
</table>

0 commit comments

Comments
 (0)