git-svn-id: https://192.168.0.254/svn/Rodax.redmine_rodax_crm/trunk@2 ff88604e-da85-c949-a72f-fc3aa3ba3724
17 lines
737 B
Plaintext
17 lines
737 B
Plaintext
<%- if Gem.available?('vpim') -%>
|
|
<h3><%= l(:label_import) %></h3>
|
|
|
|
<span id='import_link'>
|
|
<%= link_to l(:label_vcf_import), {}, :onclick => "Element.toggle('import_link'); Element.toggle('import_file'); return false;" %>
|
|
</span>
|
|
<% form_tag({:controller => :contacts_vcf, :action => :load, :project_id => @project}, :multipart => true ) do %>
|
|
<span id='import_file' style="display:none;">
|
|
<%= file_field_tag 'contact_vcf', :size => 30, :id => nil, :onchange => "this.form.submit()" -%>
|
|
<small>
|
|
<%= link_to 'Cancel', {}, :onclick => "Element.toggle('import_link'); Element.toggle('import_file'); return false;" %>
|
|
</small>
|
|
</span>
|
|
<% end %>
|
|
|
|
<%- end -%>
|