clemsbot/templates/list_redemptions.html

36 lines
719 B
HTML
Raw Normal View History

2021-08-18 05:45:44 +00:00
{% extends "_base.html" %}
{% block title %}List rewards{% endblock %}
{% block head %}
<style>
body {
display: flex;
flex-direction: column;
align-items: flex-start;
}
.reward {
display: flex;
flex-direction: column;
align-items: flex-start;
2021-08-21 00:35:25 +00:00
margin-bottom: 1em;
2021-08-18 05:45:44 +00:00
}
</style>
{% endblock %}
{% block body %}
2021-08-20 02:59:12 +00:00
<ul class="breadcrumbs">
<li><a href="/">Home</a></li>
<li><a href="/redemptions">Redemptions</a></li>
<li class="current"><a href="/redemptions/list">List</a></li>
</ul>
2021-08-18 05:45:44 +00:00
{% for reward in rewards %}
<div class="reward">
<strong>{{ reward.title }}</strong>
<em>{{ reward.id }}</em>
</div>
{% endfor %}
{% endblock %}