diff options
Diffstat (limited to 'web/templates/kill_list.html')
-rw-r--r-- | web/templates/kill_list.html | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/web/templates/kill_list.html b/web/templates/kill_list.html new file mode 100644 index 0000000..1c672d3 --- /dev/null +++ b/web/templates/kill_list.html @@ -0,0 +1,25 @@ +{% extends "base.html" %} + +{% block js %} + <script src="/static/js/kill_list.js"></script> +{% end %} + +{% block css %} + <link rel="stylesheet" type="text/css" href="/css/kill_list.css" /> +{% end %} + +{% block main %} + +<table id="kills"> + <tr> + <th class="time">time</th> + <th class="system">system</th> + <th class="victim_portrait"></th> + <th class="victim">victim</th> + <th class="killer_portrait"></th> + <th class="killer">killer(s)</th> + <th class="value">value</th> + </tr> +</table> + +{% end %} |