41 lines
781 B
Smarty
41 lines
781 B
Smarty
{% extends 'global/master.tpl' %}
|
|
|
|
{% block title %}The Broomcloset{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>Latest 5 reports</h1>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>
|
|
Subject
|
|
</th>
|
|
<th>
|
|
User reported
|
|
</th>
|
|
<th>
|
|
Reporter
|
|
</th>
|
|
<th>
|
|
Report time
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<th>
|
|
Faggot exists really
|
|
</th>
|
|
<th>
|
|
Nippon Nick
|
|
</th>
|
|
<th>
|
|
Japan Joe
|
|
</th>
|
|
<th>
|
|
1969-69-69 69:69:69 JST
|
|
</th>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
{% endblock %}
|