<div class="item-box__row{% if row.is_ignored %} is-ignored{% endif %}"
	 {% if row.is_ignored %}data-actions-queue-maintenance-ignored="1"{% endif %}>
	{% if row.icon_class is not empty %}
		<span class="item-box__row-icon"><i class="{{ row.icon_class }}" aria-hidden="true"></i></span>
	{% endif %}
	<span class="item-box__row-text{% if row.title is not empty or row.badge_label is not empty %} item-box__row-text--stacked{% endif %}">
		{% if row.title is not empty or row.badge_label is not empty %}
			<span class="item-box__row-title">
				{% if row.title is not empty %}
					<strong>{{ row.title }}</strong>
				{% endif %}
				{% if row.inline_meta is not empty %}
					<span class="item-box__row-inline-meta">{{ row.inline_meta }}</span>
				{% endif %}
				{% if row.badge_label is not empty %}
					<span class="shield-badge badge-info item-box__row-badge">{{ row.badge_label }}</span>
				{% endif %}
			</span>
		{% endif %}
		{% if row.summary is not empty %}
			<span class="item-box__row-summary">{{ row.summary }}</span>
		{% endif %}
	</span>
	{% if row.actions is not empty %}
		<span class="item-box__row-actions">
			{% for action in row.actions %}
				{% if action.is_action %}
					<button type="button"
							class="btn btn-sm btn-light action actions-landing__table-icon-action item-box__row-action"
							{% if action.tooltip is not empty %}data-bs-toggle="tooltip"
							data-bs-title="{{ action.tooltip|e('html_attr') }}"{% endif %}
							{% if action.ajax_action_json is not empty %}data-actions-queue-maintenance-action="{{ action.ajax_action_json|e('html_attr') }}"{% endif %}>
						<i class="{{ action.icon }}" aria-hidden="true"></i>
						<span class="visually-hidden">{{ action.label }}</span>
					</button>
				{% elseif action.href is not empty %}
					<a href="{{ action.href }}"
					   class="btn btn-sm btn-light action actions-landing__table-icon-action item-box__row-action"
					   {% if action.tooltip is not empty %}data-bs-toggle="tooltip"
					   data-bs-title="{{ action.tooltip|e('html_attr') }}"{% endif %}
					   {% if action.target is not empty %}target="{{ action.target }}"{% endif %}
					   {% if action.ajax_action_json is not empty %}data-actions-queue-maintenance-action="{{ action.ajax_action_json|e('html_attr') }}"{% endif %}>
						<i class="{{ action.icon }}" aria-hidden="true"></i>
						<span class="visually-hidden">{{ action.label }}</span>
					</a>
				{% endif %}
			{% endfor %}
		</span>
	{% endif %}
</div>
