15 lines
550 B
Twig
15 lines
550 B
Twig
|
|
<div class="lock-info" id="lock-info-{{ entityType }}-{{ entityId }}">
|
||
|
|
<div class="alert alert-info d-flex align-items-center">
|
||
|
|
<i class="fas fa-lock me-2"></i>
|
||
|
|
<div>
|
||
|
|
<strong>Élément verrouillé</strong>
|
||
|
|
<small class="d-block text-muted">
|
||
|
|
Modifié par {{ lockInfo.userId }} depuis {{ lockInfo.lockedAt }}
|
||
|
|
{% if lockInfo.expiresAt %}
|
||
|
|
- Expire à {{ lockInfo.expiresAt }}
|
||
|
|
{% endif %}
|
||
|
|
</small>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|