feat: created and updated timestamps in assignment details
This commit is contained in:
@@ -80,5 +80,25 @@
|
|||||||
{% endif %}
|
{% endif %}
|
||||||
</dd>
|
</dd>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="py-6 first:pt-0 last:pb-0 sm:grid sm:grid-cols-3 sm:gap-4">
|
||||||
|
<dt class="text-sm font-bold leading-6 text-gray-900">
|
||||||
|
erstellt
|
||||||
|
</dt>
|
||||||
|
<dd class="mt-1 text-sm leading-6 text-gray-700 sm:col-span-2 sm:mt-0">
|
||||||
|
{{ assignment.createdAt|date('d.m.Y, H:i') }} Uhr
|
||||||
|
</dd>
|
||||||
|
</div>
|
||||||
|
<div class="py-6 first:pt-0 last:pb-0 sm:grid sm:grid-cols-3 sm:gap-4">
|
||||||
|
<dt class="text-sm font-bold leading-6 text-gray-900">
|
||||||
|
aktualisiert
|
||||||
|
</dt>
|
||||||
|
<dd class="mt-1 text-sm leading-6 text-gray-700 sm:col-span-2 sm:mt-0">
|
||||||
|
{% if assignment.updatedAt %}
|
||||||
|
{{ assignment.updatedAt|date('d.m.Y, H:i') }} Uhr
|
||||||
|
{% else %}
|
||||||
|
-
|
||||||
|
{% endif %}
|
||||||
|
</dd>
|
||||||
|
</div>
|
||||||
</dl>
|
</dl>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user