Sha256: dfc66a7a1ae052e57c4f210aaeb9bc9ee931e081c772dca8ab00b89bcc7524b9

Contents?: true

Size: 1.47 KB

Versions: 5

Compression:

Stored size: 1.47 KB

Contents

.remote
  = form_for(@lead, :url => promote_lead_path(@lead), :html => one_submit_only(:lead), :remote => true) do |f|
    = link_to_close convert_lead_path(@lead)
    = fields_for(@account) do |a|
      = a.hidden_field :user_id
      = a.hidden_field :access

      = error_messages_for :account, :opportunity, :object_name => t('lead')

      .section
        %small
          #{t(:convert_lead_text, @lead.full_name)}
        %table
          %tr
            %td
              .label.req
                #{t :account}
                %span#account_create_title
                  (#{t :create_new} #{t :or} <a href='#' onclick='crm.select_account(1); return false;'>#{t :select_existing}</a>):
                %span#account_select_title
                  (<a href='#' onclick='crm.create_account(1); return false;'>#{t :create_new}</a> #{t :or} #{t :select_existing}):
                %span#account_disabled_title :

              = collection_select :account, :id, @accounts, :id, :name, { :selected => (@account.id || 0), :include_blank => true }, { :style => "width:330px; display:none;" }
              = a.text_field :name, :style => "width:324px; display:none;"
            %td= spacer
            %td
              .label.req #{t :assigned_to}:
              = user_select(:account, all_users, current_user)
    = render "leads/opportunity"
    = render "leads/convert_permissions"
    .buttonbar
      = f.submit t(:convert_lead)
      #{t :or}
      = link_to_cancel convert_lead_path(@lead)

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
fat_free_crm-0.12.3 app/views/leads/_convert.html.haml
fat_free_crm-0.12.2 app/views/leads/_convert.html.haml
fat_free_crm-0.12.1 app/views/leads/_convert.html.haml
fat_free_crm-0.12.0 app/views/leads/_convert.html.haml
fat_free_crm-0.11.4 app/views/leads/_convert.html.haml