work_time-1.0.x-dev/templates/work-time-block.html.twig
templates/work-time-block.html.twig
<div class="btn-work-time-block" id="work-time-block">
<button @click="play($event)"
ref="btnTimeBlock"
data-reference-field="{{ reference_field }}"
data-reference-id="{{ reference_id }}"
data-entity-bundle="{{ entity_bundle }}"
data-entity-field="{{ entity_field }}"
data-entity-id="{{ entity_id }}"
data-entity-type="{{ entity_type }}"
data-label="{{ label }}"
data-limit="{{ limit }}"
type="button"
class="btn btn-sm"
:class="{ 'btn-danger': isPlay, 'btn-success': !isPlay }">
<i class="bi"
:class="{'bi-stop-circle': isPlay, 'bi-stopwatch': !isPlay }"></i>
</button>
<span>
<time data-time="{{ time }}" data-limit="{{ limit }}">
{% verbatim %}{{ timeUp }}{% endverbatim %}
</time>
<history entity_type="{{ entity_type }}" entity_field="{{ entity_field }}" limit="{{ limit }}" title="{{ label }}" :isPlay="isPlay"></history>
</span>
</div>
