git-svn-id: https://192.168.0.254/svn/Rodax.redmine_rodax_crm/trunk@2 ff88604e-da85-c949-a72f-fc3aa3ba3724
29 lines
1.6 KiB
Plaintext
29 lines
1.6 KiB
Plaintext
<ul>
|
|
|
|
<% if !@contact.nil? %>
|
|
<li><%= context_menu_link l(:button_edit), {:controller => 'contacts', :action => 'edit', :id => @contact, :project => @project}, :class => 'icon-edit', :disabled => !@can[:edit] %></li>
|
|
<% if User.current.logged? %>
|
|
<li><%= watcher_link(@contact, User.current) %></li>
|
|
<% end %>
|
|
|
|
<% if !@project.nil? %>
|
|
<li><%= context_menu_link l(:label_deal_new), {:controller => 'deals', :action => 'new', :project_id => @project, :contact_id => @contact},
|
|
:class => 'icon-add-deal', :disabled => !@can[:create_deal] %></li>
|
|
<% if @contact.is_company? %>
|
|
<li><%= context_menu_link l(:label_add_employee), {:controller => 'contacts', :action => 'new', :project_id => @project, :contact => {:company => @contact.name}},
|
|
:class => 'icon-add-employee', :disabled => !@can[:edit] %></li>
|
|
<% end %>
|
|
<% end %>
|
|
<% else %>
|
|
<li><%= context_menu_link l(:button_edit), {:controller => 'contacts', :action => 'bulk_edit', :ids => @contacts.collect(&:id)},
|
|
:class => 'icon-edit', :disabled => !@can[:edit] %></li>
|
|
<% end %>
|
|
|
|
<li><%= context_menu_link l(:label_send_mail), {:controller => 'contacts', :action => 'edit_mails', :ids => @contacts.collect(&:id), :project_id => @project}, :class => 'icon-email', :disabled => !@can[:send_mails] %></li>
|
|
|
|
|
|
<li><%= context_menu_link l(:button_delete), {:controller => 'contacts', :action => 'bulk_destroy', :ids => @contacts.collect(&:id), :project_id => @project},
|
|
:method => :post, :confirm => l(:text_are_you_sure), :class => 'icon-del', :disabled => !@can[:delete] %></li>
|
|
</ul>
|
|
|