Sha256: be62117dbef66b80d549b281b08d452200d4e140b5584c19d5369062532af4cd

Contents?: true

Size: 1.13 KB

Versions: 13

Compression:

Stored size: 1.13 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)) do
          = account_with_url_for(contact)
        - assigned_to_user = User.find_by_id(contact.assigned_to)
        = col(t(:assigned_to)) do
          = link_to(assigned_to_user.name, url_for(assigned_to_user)) if assigned_to_user
      %tr
        = col(t(:tags)) do
          .tags= tags_for_index(contact)

    -# 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

13 entries across 13 versions & 1 rubygems

Version Path
fat_free_crm-0.22.1 app/views/contacts/_section_general.html.haml
fat_free_crm-0.22.0 app/views/contacts/_section_general.html.haml
fat_free_crm-0.21.0 app/views/contacts/_section_general.html.haml
fat_free_crm-0.20.1 app/views/contacts/_section_general.html.haml
fat_free_crm-0.20.0 app/views/contacts/_section_general.html.haml
fat_free_crm-0.19.2 app/views/contacts/_section_general.html.haml
fat_free_crm-0.19.0 app/views/contacts/_section_general.html.haml
fat_free_crm-0.18.2 app/views/contacts/_section_general.html.haml
fat_free_crm-0.17.3 app/views/contacts/_section_general.html.haml
fat_free_crm-0.18.1 app/views/contacts/_section_general.html.haml
fat_free_crm-0.18.0 app/views/contacts/_section_general.html.haml
fat_free_crm-0.17.2 app/views/contacts/_section_general.html.haml
fat_free_crm-0.17.1 app/views/contacts/_section_general.html.haml