git-svn-id: http://redmine-dmsf.googlecode.com/svn/trunk/redmine_dmsf@280 5e329b0b-a2ee-ea63-e329-299493fc886d
41 lines
1.7 KiB
Plaintext
41 lines
1.7 KiB
Plaintext
<p><strong><%=l(:link_user_preferences)%></strong></p>
|
|
<div class="box">
|
|
<% form_tag({:controller => "dmsf_state", :action => "user_pref_save", :id => @project},
|
|
:method=>:post) do %>
|
|
<div>
|
|
<%
|
|
member = @project.members.find(:first, :conditions => {:user_id => User.current.id})
|
|
mail_notification = member ? member.dmsf_mail_notification : nil
|
|
%>
|
|
<%= l(:label_notifications) %>:
|
|
<%= select_tag("email_notify",
|
|
options_for_select([[l(:select_option_default), nil],
|
|
[l(:select_option_activated), true], [l(:select_option_deactivated), false]],
|
|
:selected => mail_notification)) %>
|
|
<%= submit_tag(l(:submit_save), :title => l(:title_save_preferences)) %>
|
|
</div>
|
|
<% end %>
|
|
|
|
<% form_for :project, @project, :url => project_path(@project), :html => {:method=>:post} do %>
|
|
<% custom_fields = DmsfFileRevisionCustomField.find(:all) %>
|
|
<% unless custom_fields.empty? %>
|
|
<fieldset id="project_issue_custom_fields"><legend><%=l(:label_custom_field_plural)%></legend>
|
|
<% custom_fields.each do |custom_field| %>
|
|
<label class="floating">
|
|
<%= check_box_tag 'project[dmsf_file_revision_custom_field_ids][]', custom_field.id, (@project.all_dmsf_custom_fields.include? custom_field), (custom_field.is_for_all? ? {:disabled => "disabled"} : {}) %>
|
|
<%= custom_field.name %>
|
|
</label>
|
|
<% end %>
|
|
<%= hidden_field_tag 'project[dmsf_file_revision_custom_field_ids][]', '' %>
|
|
<%= hidden_field_tag '_method', 'put' %>
|
|
</fieldset>
|
|
<% end %>
|
|
|
|
<%= submit_tag(l(:submit_save), :title => l(:title_save_preferences)) %>
|
|
<% end %>
|
|
</div>
|
|
|
|
<% content_for :header_tags do %>
|
|
<%= stylesheet_link_tag "dmsf", :plugin => "redmine_dmsf" %>
|
|
<% end %>
|