mirror of https://github.com/snachodog/mybuddy.git
Mute child name on timer detail
This commit is contained in:
parent
dcce3c5ee7
commit
05266d4b76
|
@ -11,16 +11,16 @@
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<div class="jumbotron text-center">
|
<div class="jumbotron text-center">
|
||||||
|
|
||||||
<div class="h1{% if not object.active %} timer-stopped{% endif %}" id="timer-status">
|
<h1 {% if not object.active %}class="timer-stopped" {% endif %}id="timer-status">
|
||||||
<span class="timer-hours">{{ object.duration|hours }}</span>h
|
<span class="timer-hours">{{ object.duration|hours }}</span>h
|
||||||
<span class="timer-minutes">{{ object.duration|minutes }}</span>m
|
<span class="timer-minutes">{{ object.duration|minutes }}</span>m
|
||||||
<span class="timer-seconds">{{ object.duration|seconds }}</span>s
|
<span class="timer-seconds">{{ object.duration|seconds }}</span>s
|
||||||
</div>
|
</h1>
|
||||||
|
|
||||||
{% if timer.child %}
|
{% if timer.child %}
|
||||||
<div class="h2">
|
<h2 class="text-muted">
|
||||||
{{ timer.child }}
|
{{ timer.child }}
|
||||||
</div>
|
</h2>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
<p class="lead text-secondary">
|
<p class="lead text-secondary">
|
||||||
|
|
Loading…
Reference in New Issue