git-svn-id: https://192.168.0.254/svn/Rodax.redmine_rodax_crm/trunk@2 ff88604e-da85-c949-a72f-fc3aa3ba3724
26 lines
1.1 KiB
Plaintext
26 lines
1.1 KiB
Plaintext
<div class="contextual">
|
|
<%= link_to_if_authorized l(:label_contact_new), {:controller => 'contacts', :action => 'new', :project_id => @project}, :class => 'icon icon-add' %>
|
|
</div>
|
|
|
|
<h2><%= l(:label_contact_edit_information) %></h2>
|
|
|
|
<% labelled_form_for :contact, @contact,
|
|
:url => {:action => 'update', :project_id => @project, :id => @contact},
|
|
:html => { :multipart => true, :method => :put, :id => "contact_form" } do |f| %>
|
|
<%= render :partial => 'form', :locals => {:f => f} %>
|
|
<%= render :partial => 'name_observer' %>
|
|
<%= submit_tag l(:button_save) -%>
|
|
<% end -%>
|
|
|
|
<% content_for :sidebar do %>
|
|
<%= render :partial => 'common/sidebar' %>
|
|
<%= render :partial => 'contacts_duplicates/duplicates' %>
|
|
<%= render :partial => 'contacts_projects/related' %>
|
|
<% end %>
|
|
|
|
<% content_for :header_tags do %>
|
|
<%= javascript_include_tag :contacts, :plugin => 'redmine_contacts' %>
|
|
<%= stylesheet_link_tag :contacts, :plugin => 'redmine_contacts' %>
|
|
<%= stylesheet_link_tag :contacts_sidebar, :plugin => 'redmine_contacts' %>
|
|
<% end %>
|