Skip to content

Instantly share code, notes, and snippets.

View zola353's full-sized avatar

Zelalem Eshetu zola353

View GitHub Profile
@zola353
zola353 / index.html
Created February 12, 2026 15:43
Untitled
<td>${formatDate(p.date)}</td>
<td style="font-weight:500;">${p.item}</td>
<td><span class="category-tag">${p.category}</span></td>
<td>${p.quantity} ${p.unit}</td>
<td>${p.unitPrice.toLocaleString()} ብር</td>
<td class="amount">${p.total.toLocaleString()} ብር</td>
</tr>
;
});
document.getElementById('tableBody').innerHTML = tbodyHtml;