{% if change.method == "change" %}
{{ _('Updated description of {pkg_link} from
{old_notes}to
{new_notes}').format( pkg_link = h.nav_link(change.title, named_route='dataset.read', id=change.pkg_id), old_notes = change.old_notes, new_notes = change.new_notes ) }} {% elif change.method == "add" %} {{ _('Updated description of {pkg_link} to
{new_notes}').format( pkg_link = h.nav_link(change.title, named_route='dataset.read', id=change.pkg_id), new_notes = change.new_notes ) }} {% elif change.method == "remove" %} {{ _('Removed description from {pkg_link}').format( pkg_link = h.nav_link(change.title, named_route='dataset.read', id=change.pkg_id) ) }} {% else %} {{ _('No fields were updated. See the metadata diff for more details.') }} {% endif %}