blob: c8550d74321d4dfa56add2ab9f69d0ef2bb16001 (
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
25
|
{% 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>
<th class="value">value</th>
</tr>
</table>
{% end %}
|