depot/web/quotes/templates/quotedb/show_quote.html

10 lines
221 B
HTML
Raw Normal View History

{% extends "base.html" %}
{% block title %}#{{ quote.id }}{% endblock %}
{% block content %}
<h2 class="text-bfobOrange font-bnto text-2xl">Quote #{{ quote.id }}</h2>
2021-01-20 23:14:58 +00:00
{% include "quotedb/_quote.html" %}
{% endblock %}