wedding-planner/app/views/expenses/_expense.html.erb

20 lines
298 B
Plaintext
Raw Normal View History

2024-10-27 21:42:45 +00:00
<%# Copyright (C) 2024 Manuel Bustillo %>
2024-07-11 19:55:48 +02:00
<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>