summaryrefslogtreecommitdiffstats
path: root/web/templates
diff options
context:
space:
mode:
authorraylu <raylu@gridium.com>2013-10-20 16:11:51 -0700
committerraylu <raylu@gridium.com>2013-10-20 16:11:51 -0700
commit5c1b4b72ea8552e03acf9dec61fc27dfb2cd2adf (patch)
tree76c853dc800d1e26e2cb02926543ca508ed2b472 /web/templates
parentb41afb028a5585d5c035568024bea6f433246aa3 (diff)
downloadykill-5c1b4b72ea8552e03acf9dec61fc27dfb2cd2adf.tar.xz
clean up corporation kill list
Diffstat (limited to 'web/templates')
-rw-r--r--web/templates/base.html1
-rw-r--r--web/templates/corporation.html15
2 files changed, 15 insertions, 1 deletions
diff --git a/web/templates/base.html b/web/templates/base.html
index ffbe99b..b05a4fa 100644
--- a/web/templates/base.html
+++ b/web/templates/base.html
@@ -2,6 +2,7 @@
<html>
<head>
<link rel="stylesheet" type="text/css" href="/css/base.css" />
+ {% block css %}{% end %}
<script src="//ajax.googleapis.com/ajax/libs/mootools/1.4.5/mootools.js"></script>
<script>
window.ykill = {
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 %}