1
Fork 0
mirror of https://github.com/Quackster/Havana.git synced 2025-07-06 14:47:46 +00:00
Havana/tools/www-tpl/es/housekeeping/transaction/search_results.tpl
2025-02-24 08:11:19 -03:00

33 lines
No EOL
1.1 KiB
Smarty

{% if transactions|length > 0 %}
<h2>Resultados de la búsqueda</h2>
<div class="table-responsive">
<table class="table table-striped">
<thead>
<tr>
<th></th>
<th>Item ID</th>
<th> Descripción</th>
<th>Monedas</th>
<th>Píxeles</th>
<th>Cantidad</th>
<th>Creado en</th>
</tr>
</thead>
<tbody>
{% set num = 1 %}
{% for transaction in transactions %}
<tr>
<td><a href="{{ site.sitePath }}/{{ site.housekeepingPath }}/transaction/track_item?id={{ transaction.getItemId() }}">Rastrear este artículo</a></td>
<td>{{ transaction.getItemId() }}</td>
<td>{{ transaction.description }}</td>
<td>{{ transaction.costMonedas }}</td>
<td>{{ transaction.costPixels }}</td>
<td>{{ transaction.amount }}</td>
<td>{{ transaction.getFormattedDate() }}</td>
</tr>
{% set num = num + 1 %}
{% endfor %}
</tbody>
</table>
</div>
{% endif %}