Files
roi-theme/wp-content/plugins/thrive-ultimatum/thrive-dashboard/inc/auto-responder/views/error-log-entry.php
root a22573bf0b Commit inicial - WordPress Análisis de Precios Unitarios
- WordPress core y plugins
- Tema Twenty Twenty-Four configurado
- Plugin allow-unfiltered-html.php simplificado
- .gitignore configurado para excluir wp-config.php y uploads

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-03 21:04:30 -06:00

37 lines
1.1 KiB
PHP
Executable File

<td class="tvd-error-entry-api_data">
<span class="tvd-normal">
<#= item.get( 'fields_html' ) #>
</span>
</td>
<td class="tvd-error-entry-connection">
<span class="tvd-normal">
<#- item.get( 'connection_explicit' ) #>
</span>
</td>
<td class="tvd-error-entry-date">
<span class="tvd-normal">
<#- item.get( 'date' ) #>
</span>
</td>
<td class="tvd-error-entry-error_message">
<span class="tvd-normal">
<#- item.get( 'error_message' ) #>
</span>
</td>
<td class="tvd-error-entry-actions" data-log-id="<#= item.get( 'id' ) #>">
<div class="row-actions visible tvd-center-align">
<# if ( item.get( 'connection_type' ) !== 'storage' ) { #>
<span class="retry">
<span class="tvd-icon-loop2 tvd-tooltipped tvd-logs-icon tvd-logs-icon-repeat"
data-position="bottom"
data-tooltip="<?php echo esc_html__( 'Retry', 'thrive-dash' ) ?>"></span>
</span>
<# } #>
<span class="delete">
<span class="tvd-icon-trash-o tvd-tooltipped tvd-logs-icon tvd-logs-icon-delete"
data-position="bottom"
data-tooltip="<?php echo esc_html__( 'Delete', 'thrive-dash' ) ?>"></span>
</span>
</div>
</td>