{% load trello_webhook_tags %}{% if 'closed' in action.data.old %}{{action.memberCreator.fullName}} {% if action.data.old.closed == True %}restored{% else %}archived{% endif %} the card "{{action.data.card.name}}" on the board "{{action.data.board.name}}"{% elif 'desc' in action.data.old %}{{action.memberCreator.fullName}} updated the description of the card "{{action.data.card.name}}" on the board "{{action.data.board.name}}":
{{action.data.card.desc}}
{% elif 'idList' in action.data.old %}{{action.memberCreator.fullName}} moved the card "{{action.data.card.name}}" on the board "{{action.data.board.name}}" from "{{action.data.listBefore.name}}" to "{{action.data.listAfter.name}}"{% else %}{{action.memberCreator.fullName}} updated the card "{{action.data.card.name}}" on the board "{{action.data.board.name}}":
{% include 'trello_webhooks/partials/update_values_list.html' with old=action.data.old new=action.data.card %}{% endif %}