quotes/templates/quote.html

11 lines
361 B
HTML

{% extends 'base.html' %}
{% block title %}~chat IRC quote database - quote {{ row[0] }}{% endblock %}
{% block pagetitle %}quote {{ row[0] }}{% endblock %}
{% block content %}
<p>score: {{ row[2] }}
(<a href="/quote/{{row[0]}}/upvote">upvote</a>/<a href="/quote/{{row[0]}}/downvote">downvote</a>)
</p>
<pre>{{row[1]}}</pre>
{% endblock %}