mybuddy/core/templates/timer_list.html

11 lines
399 B
HTML
Raw Normal View History

2017-08-16 22:53:53 +00:00
{% for timer in timers %}
2017-08-17 01:03:09 +00:00
<div class="card border-success text-center mb-2">
<div class="card-header text-white bg-success ">{{ timer.name }}</div>
<div class="card-body text-success">
<h4 class="card-text">{{ timer.duration }}</h4>
</div>
<div class="card-footer text-muted small">
2017-08-17 17:39:23 +00:00
{{ timer.start }}
2017-08-17 01:03:09 +00:00
</div>
</div>
2017-08-16 22:53:53 +00:00
{% endfor %}