Skip to content

Commit 8f441e5

Browse files
committed
add : GOD.html page added.
1 parent 49eae63 commit 8f441e5

File tree

2 files changed

+12
-6
lines changed

2 files changed

+12
-6
lines changed

templates/GOD.html

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,19 @@
11
{% extends 'base_action.html' %}
22

33
{% block sub_table %}
4+
<tr>
5+
<th class="action_table" id="player_name">Player Name</th>
6+
<th class="action_table" id="player_role">Player Role</th>
7+
<th class="action_table" id="actions">Actions</th>
8+
</tr>
49
{% for ip in ip2role_index_name.keys() %}
510
<tr>
6-
<td>
7-
{{ ip2role_index_name[ip][0] }}
8-
</td>
9-
<td>
10-
{{ ip2role_index_name[ip][2] }}
11+
<td class="action_table" id="player_name">{{ ip2role_index_name[ip][2] }}</td>
12+
<td class="action_table" id="player_role">{{ ip2role_index_name[ip][0] }}</td>
13+
<td class="action_table" id="actions">
14+
<a href="#">Ban</a>
15+
<a href="#">Comment</a>
16+
<a href="#">Kill</a>
1117
</td>
1218
</tr>
1319
{% endfor %}

templates/base_action.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
<meta name="viewport" content="width=device-width, initial-scale=1.0">
66
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
77
</head>
8-
<table>
8+
<table style="border-collapse: collapse">
99
{% block sub_table %}{% endblock %}
1010
</table>

0 commit comments

Comments
 (0)