2017-10-29 03:01:39 +00:00
|
|
|
{% extends 'cards/base.html' %}
|
2019-04-14 15:40:08 +00:00
|
|
|
{% load i18n %}
|
2021-08-04 20:36:00 +00:00
|
|
|
{% block header %}
|
2024-02-06 13:35:36 +00:00
|
|
|
<a href="{% url "core:timer-list" %}">{% trans "Timers" %}</a>
|
2021-08-04 20:36:00 +00:00
|
|
|
{% endblock %}
|
2017-09-25 16:13:37 +00:00
|
|
|
{% block title %}
|
|
|
|
{% with instances|length as count %}
|
2022-06-05 13:34:52 +00:00
|
|
|
{% blocktrans trimmed count counter=count %}
|
2022-08-14 20:55:57 +00:00
|
|
|
{{ count }} timer
|
2022-06-05 13:34:52 +00:00
|
|
|
{% plural %}
|
2022-08-14 20:55:57 +00:00
|
|
|
{{ count }} timers
|
2020-01-24 04:00:32 +00:00
|
|
|
{% endblocktrans %}
|
2017-09-25 16:13:37 +00:00
|
|
|
{% endwith %}
|
|
|
|
{% endblock %}
|
|
|
|
{% block listgroup %}
|
|
|
|
<ul class="list-group list-group-flush">
|
2024-02-06 13:35:36 +00:00
|
|
|
{% for timer in instances %}
|
|
|
|
<a href="{% url 'core:timer-detail' timer.id %}"
|
|
|
|
class="list-group-item list-group-item-action">
|
|
|
|
<strong>{{ timer.title_with_child }}</strong>
|
|
|
|
<p class="text-body-secondary small m-0">
|
|
|
|
{% blocktrans trimmed with start=timer.start|time user=timer.user_username %}
|
|
|
|
Started by {{ user }} at {{ start }}
|
|
|
|
{% endblocktrans %}
|
|
|
|
</p>
|
|
|
|
</a>
|
|
|
|
{% endfor %}
|
2017-09-25 16:13:37 +00:00
|
|
|
</ul>
|
2024-02-06 13:35:36 +00:00
|
|
|
{% endblock %}
|