<%# Redmine plugin for Document Management System "Features" # # Copyright © 2011 Vít Jonáš # Copyright © 2012 Daniel Munn # Copyright © 2011-18 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 = Member.find_by(project_id: @project.id, user_id: User.current.id) %> <% if member %> <% mail_notification = member.dmsf_mail_notification %> <% title_format = member.dmsf_title_format %> <% fast_links = member.dmsf_fast_links %> <% else %> <% mail_notification = false %> <% title_format = '' %> <% fast_links = false %> <% 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) %>

<%= content_tag(:label, l(:label_dmsf_fast_links)) %> <%= check_box_tag('fast_links', 1, fast_links) %> <%= l(:text_dmsf_fast_links_info) %>

<% 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 %>