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

10 lines
243 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>
{% include "quotedb/_quote.html" with quote=quote only %}
{% endblock %}