Files
ircquotes/templates/quote.html

22 lines
741 B
HTML

{% extends 'base.html' %}
{% block content %}
<center>
<table cellpadding="2" cellspacing="0" width="80%">
<tr>
<td valign="top">
<p class="quote">
<a href="/quote?id={{ quote.id }}" title="Permanent link to this quote."><b>#{{ quote.id }}</b></a>
<a href="/vote/{{ quote.id }}/upvote" class="qa">+</a>
(<font color="green">{{ quote.votes }}</font>)
<a href="/vote/{{ quote.id }}/downvote" class="qa">-</a>
<a href="/flag/{{ quote.id }}" class="qa">[X]</a>
</p>
<p class="qt">{{ quote.text }}</p>
</td>
</tr>
</table>
</center>
{% endblock %}