20 lines
298 B
Plaintext
20 lines
298 B
Plaintext
<%# Copyright (C) 2024 Manuel Bustillo %>
|
|
|
|
<div id="<%= dom_id expense %>">
|
|
<p>
|
|
<strong>Name:</strong>
|
|
<%= expense.name %>
|
|
</p>
|
|
|
|
<p>
|
|
<strong>Amount:</strong>
|
|
<%= expense.amount %>
|
|
</p>
|
|
|
|
<p>
|
|
<strong>Pricing type:</strong>
|
|
<%= expense.pricing_type %>
|
|
</p>
|
|
|
|
</div>
|