Summary
Show the trigger date in your current date format in the Display Pattern to see when the keywords where assigned.
{% if data.autoTagging.assignMatches.triggeredOn %}
{{data.autoTagging.assignMatches.triggeredOn | local_date: "%d.%m.%Y %H:%M:%S"}}
{% endif %}
CODE
Setup in Picturepark
Field Value Access
data.autoTagging.assignMatches.triggeredOn
data.autoTagging.assignMatches.triggeredBy
Use Case
A use case would be to show the triggeredOn value as a summary. The trigger field already shows this information in view mode. If you still have this information in the Display Pattern, you can do so and convert the trigger date to your local time using the Liquid Filter local_date.
{% if data.autoTagging.assignMatches.triggeredOn %}
{{data.autoTagging.assignMatches.triggeredOn | local_date: "%d.%m.%Y %H:%M:%S"}}
{% endif %}
CODE