~bnrubin/bantrackertwo/devel

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{% extends "bt/base.html" %}
{% block content %}
<a href='/issue/new/'>New Issue</a>
<table>
<tr>
    <th>Create</th>
    <th>Modify</th>
    <th>Desc</th>
    <th>User</th>
</tr> 
{% for i in issues %}
<tr>
    <td>{{ i.create_date }}</td>
    <td>{{ i.modify_date }}</td>
    <td>{{ i.description }}</td>
    <td>{{ i.author.username }}</td>
</tr>
{% endfor %}
</table>
{% endblock content %}