<%# Redmine plugin for Document Management System "Features" # # Copyright (C) 2011 Vít Jonáš # Copyright (C) 2012 Daniel Munn # Copyright (C) 2011-17 Karel Pičman # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.%> <% member = @project.members.where(:user_id => User.current.id).first %> <% if member %> <% mail_notification = member.dmsf_mail_notification %> <% title_format = member.title_format %> <% end %> <%= form_tag(dmsf_user_pref_save_path(@project)) do %>
<%= l(:link_user_preferences) %>

<%= content_tag(:label, "#{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)) %>

<%= content_tag(:label, "#{l(:label_title_format)}:") %> <%= text_field_tag 'title_format', title_format, :size => 10 %> <%= l(:text_title_format) %>

<% if Setting.plugin_redmine_dmsf['dmsf_act_as_attachable'] %>
<%= l(:field_project) %> <%= l(:label_preferences) %>

<%= content_tag(:label, "#{l(:label_act_as_attachable)}:") %> <%= select_tag( 'act_as_attachable', options_for_select([ [l(:label_attachment_plural) + ' & ' + l(:menu_dmsf), Project::ATTACHABLE_DMS_AND_ATTACHMENTS], [l(:label_attachment_plural), Project::ATTACHABLE_ATTACHMENTS], ],:selected => @project.dmsf_act_as_attachable)) %>

<% end %> <%= submit_tag(l(:submit_save), :title => l(:title_save_preferences)) %> <% end %>