This repository has been archived on 2024-12-01. You can view files and clone it, but cannot push or open issues or pull requests.
redmine_rodax_crm/app/views/deals/_attributes.html.erb
2012-01-03 16:18:32 +00:00

15 lines
393 B
Plaintext

<% if @deal.custom_values.any? %>
<div id="attributes">
<h3><%= l(:label_deal) %></h3>
<table class="attributes">
<% @deal.custom_values.each do |custom_value| %>
<% if !custom_value.value.blank? %>
<tr> <th class = "custom_field"><%= custom_value.custom_field.name %>:</th><td> <%=h show_value(custom_value) %></td> </tr>
<% end %>
<% end %>
</table>
</div>
<% end %>