Sha256: cb3d6dacdba9ea52a5d5c6ee5b6601d18c3e774ff43f1598693312cb62f66b7a

Contents?: true

Size: 1.15 KB

Versions: 2

Compression:

Stored size: 1.15 KB

Contents

- collapsed = session[:contact_show_general].nil? # && contact.errors.empty?
= section_title :contact_show_general, collapsed, t(:general_info), t('show_general_info_small')
.show_fields
  #contact_show_general{ hidden_if(collapsed) }
    %table.asset_attributes
      %tr
        = col(t(:first_name), contact.first_name)
        = col(t(:last_name), contact.last_name)
      %tr
        = col(t(:email), contact.email, false, true)
        = col(t(:phone), contact.phone)
      %tr
        = col(t(:account), account_with_url_for(contact))
        - assigned_to_user = User.find_by_id(contact.assigned_to)
        = col(t(:assigned_to), assigned_to_user ? link_to(assigned_to_user.name, url_for(assigned_to_user)) : "")
      %tr
        = col(t(:tags), contact.tag_list.map{|tag| content_tag(:span, tag, :class => "fbtag")}.join(' '))

    -# Show custom fields that are in the default field group
    - custom_field_group = contact.field_groups.select{|f| f.name == 'custom_fields'}.first
    - if custom_field_group.present?
      - fields = custom_field_group.fields.without_pairs
      = render("fields/group_view", :fields => fields, :entity => contact) unless fields.nil?

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
fat_free_crm-0.13.4 app/views/contacts/_section_general.html.haml
fat_free_crm-0.13.3 app/views/contacts/_section_general.html.haml