mybuddy/dashboard/templates/cards/timer_list.html

24 lines
831 B
HTML
Raw Normal View History

2017-10-29 03:01:39 +00:00
{% extends 'cards/base.html' %}
{% load i18n %}
2017-09-25 16:13:37 +00:00
{% block header %}{% trans "Active Timers" %}{% endblock %}
2017-09-25 16:13:37 +00:00
{% block title %}
{% with instances|length as count %}
{% blocktrans with plural=count|pluralize %}{{ count }} active timer{{ plural }}{% endblocktrans %}
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">
<strong>{{ instance }}</strong>
<p class="text-muted small m-0">
{% blocktrans with start=instance.start|time user=instance.user %}Started by {{ user }} at {{ start }}{% endblocktrans %}
</p>
2017-09-25 16:13:37 +00:00
</a>
{% endfor %}
</ul>
{% endblock %}