fix bug in template render

This commit is contained in:
lza_menace 2020-09-16 14:20:02 -07:00
parent d481481dcd
commit 7d75d4228e
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@
<tr>
<td>{{ post[1].timestamp.strftime('%Y-%m-%d %H:%M') }}</td>
<td>{{ post[1].id }}</td>
<td><a href="{{ url_for('post.read', id=post.id) }}">{{ post[1].title }}</a></td>
<td><a href="{{ url_for('post.read', id=post[1].id) }}">{{ post[1].title }}</a></td>
<td>{{ post[1].submitter }}</td>
<td>{{ post[0] }} WOW</td>
</tr>