summaryrefslogtreecommitdiffstats
path: root/web/templates/corporation.html
blob: 8e8e7fa59fb971c612da9086cd98331f54b12206 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{% extends "base.html" %}

{% block js %}
	<script src="/static/js/corporation.js"></script>
{% end %}

{% block css %}
	<link rel="stylesheet" type="text/css" href="/css/corporation.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>
	</tr>
</table>

{% end %}