mybuddy/dashboard/templates/cards/timer_list.html

20 lines
643 B
HTML
Raw Normal View History

2017-10-29 03:01:39 +00:00
{% extends 'cards/base.html' %}
2017-09-25 16:13:37 +00:00
{% block header %}Active Timers{% endblock %}
{% block title %}
{% with instances|length as count %}
{{ count }} active timer{{ count|pluralize }}
2017-09-25 16:13:37 +00:00
{% endwith %}
{% endblock %}
{% block listgroup %}
<ul class="list-group list-group-flush">
{% for instance in instances %}
2017-12-03 21:52:27 +00:00
<a href="{% url 'core:timer-detail' instance.id %}"
class="list-group-item list-group-item-action">
2017-09-25 16:13:37 +00:00
<strong>{{ instance }}</strong> <p class="text-muted small m-0">Started by {{ instance.user }} at {{ instance.start|time }}</p>
</a>
{% endfor %}
</ul>
{% endblock %}