Files
old-holivud2/app/views/contracts/_notes.html.erb
2020-05-31 22:38:19 +02:00

13 lines
282 B
Plaintext

<p class="heading"><strong><u>Notes</u></strong></p>
<ul>
<% notable.notes.order(created_at: :desc).each do |note| %>
<li>
<%= note.content %>
<br>
<%= note.email %>
<br>
<%= note.created_at.strftime("%D %l:%M %p") %>
</li>
<% end %>
</ul>