diff options
author | raylu <raylu@gridium.com> | 2013-10-20 16:11:51 -0700 |
---|---|---|
committer | raylu <raylu@gridium.com> | 2013-10-20 16:11:51 -0700 |
commit | 5c1b4b72ea8552e03acf9dec61fc27dfb2cd2adf (patch) | |
tree | 76c853dc800d1e26e2cb02926543ca508ed2b472 /web/templates/corporation.html | |
parent | b41afb028a5585d5c035568024bea6f433246aa3 (diff) | |
download | ykill-5c1b4b72ea8552e03acf9dec61fc27dfb2cd2adf.tar.xz |
clean up corporation kill list
Diffstat (limited to 'web/templates/corporation.html')
-rw-r--r-- | web/templates/corporation.html | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/web/templates/corporation.html b/web/templates/corporation.html index 66eceb2..8e8e7fa 100644 --- a/web/templates/corporation.html +++ b/web/templates/corporation.html @@ -4,8 +4,21 @@ <script src="/static/js/corporation.js"></script> {% end %} +{% block css %} + <link rel="stylesheet" type="text/css" href="/css/corporation.css" /> +{% end %} + {% block main %} -<div id="kills"></div> +<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> + </tr> +</table> {% end %} |