smash2/templates/list.html

30 lines
1 KiB
HTML

{% extends "layout.html" %}
{% block title %}{{ title }}{% endblock %}
{% block nav_latest %}{% if latest %}active{% endif %}{% endblock %}
{% block content %}
<div class="container">
<h1 class="display-4 mb-5">{{ header }}</h1>
{% for quote in quotes %}
<div>
<div class="d-flex justify-content-between">
<p class="small block"><a href="/quote/{{ quote.id }}">ID:{{quote.id}}</a></p>
<!-- These buttons will be admin tools
<span>
<button class="btn btn-link btn-sm"><i class="fas fa-pencil-alt"></i></button>
<button class="btn btn-link text-danger btn-sm"><i class="fas fa-times"></i></button>
</span>
-->
</div>
<pre>{{ quote.quote }}</pre>
<p class="text-muted small">Tags: {% for tag in quote.tags %}<a href="/tags/{{tag}}">{{tag}}</a>{% if not loop.last %}, {% endif %}{% endfor %}</p>
</div>
{% if not loop.last %}<hr />{% endif %}
{% endfor %}
</div>
{% endblock %}