• {% if change.method == "change" %} {{ _('Updated description of {org_link} from

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