23 lines
874 B
Plaintext
23 lines
874 B
Plaintext
<%= l(:text_crm_deal_updated, :name => h(@deal.full_name), :author => h(@author)) %>
|
|
|
|
<ul>
|
|
<li><%=l(:text_crm_deal_status_changed, :old => (@status_was ? @status_was.name : ""), :new => (@status ? @status.name : "")) %></li>
|
|
</ul>
|
|
|
|
<hr />
|
|
|
|
<h1><%= link_to("#{l(:label_deal)} ##{@deal.id}: #{@deal.info}".html_safe, @deal_url) %></h1>
|
|
|
|
<ul>
|
|
<li><%=l(:label_crm_deal_status)%>: <%=h @deal.status.name if @deal.status %></li>
|
|
<li><%=l(:label_crm_deal_category)%>: <%=h @deal.category %></li>
|
|
<li><%=l(:field_deal_contact)%>: <%=h @deal.contact.name if @deal.contact %></li>
|
|
<li><%=l(:field_deal_price)%>: <%=h @deal.price %></li>
|
|
<li><%=l(:field_assigned_to)%>: <%=h @deal.assigned_to %></li>
|
|
<% @deal.custom_field_values.each do |c| %>
|
|
<li><%=h c.custom_field.name %>: <%=h show_value(c) %></li>
|
|
<% end %>
|
|
</ul>
|
|
|
|
<%= textilizable(@deal, :background, :only_path => false) %>
|