29 lines
394 B
Plaintext
29 lines
394 B
Plaintext
<div id="<%= dom_id expense %>">
|
|
|
|
<p>
|
|
<strong>Title:</strong>
|
|
<%= expense.title %>
|
|
</p>
|
|
|
|
<p>
|
|
<strong>Amount:</strong>
|
|
<%= expense.amount %>
|
|
</p>
|
|
|
|
<p>
|
|
<strong>Date:</strong>
|
|
<%= expense.date %>
|
|
</p>
|
|
|
|
<p>
|
|
<strong>Category:</strong>
|
|
<%= expense.category %>
|
|
</p>
|
|
|
|
<p>
|
|
<strong>Description:</strong>
|
|
<%= expense.description %>
|
|
</p>
|
|
|
|
</div>
|