{% extends "vend/_layouts/settings" %} {% block actionButton %} {{ "New Import Profile"|t('vend') }} {% endblock %} {% block content %}

{{ "Import Profiles"|t('vend') }}

{% if profiles %} {% for profile in profiles %} {% endfor %}
{{ "Name"|t('app') }} {{ "Handle"|t('handle') }}
{{ profile.name|t('site') }} {{ profile.handle }}
{% endif %} {% endblock %} {% js %} var adminTable = new Craft.AdminTable({ tableSelector: '#profiles', noItemsSelector: '#no-profiles', deleteAction: 'vend/import-profiles/delete', confirmDeleteMessage: '{{ "Are you sure you want to delete “{name}”?"|t('vend') }}', }); {% endjs %}