##// END OF EJS Templates
add newline at end of app/views/enumerations/edit.html.erb...
add newline at end of app/views/enumerations/edit.html.erb git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7229 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r6502:fa67aa2c08e7
r7109:d85f21a9168b
Show More
_issues.html.erb
23 lines | 844 B | text/plain | TextLexer
Jean-Philippe Lang
Admin settings screen split to tabs....
r1033 <% form_tag({:action => 'edit', :tab => 'issues'}) do %>
<div class="box tabular settings">
Jean-Philippe Lang
Adds helpers for setting field tags....
r3084 <p><%= setting_check_box :cross_project_issue_relations %></p>
Jean-Philippe Lang
Admin settings screen split to tabs....
r1033
Jean-Philippe Lang
Ability to assign issues to groups (#2964)....
r6186 <p><%= setting_check_box :issue_group_assignment %></p>
Jean-Philippe Lang
Adds helpers for setting field tags....
r3084 <p><%= setting_check_box :display_subprojects_issues %></p>
Jean-Philippe Lang
Adds an application setting to choose whether or not subprojects issues should be displayed by default on the issue list, calendar and gantt (r1178). Default is true....
r1184
Jean-Philippe Lang
Adds helpers for setting field tags....
r3084 <p><%= setting_select :issue_done_ratio, Issue::DONE_RATIO_OPTIONS.collect {|i| [l("setting_issue_done_ratio_#{i}"), i]} %></p>
Eric Davis
Adds a Setting to control how an Issue's done_ratio is calculated:...
r3037
Jean-Philippe Lang
Adds helpers for setting field tags....
r3084 <p><%= setting_text_field :issues_export_limit, :size => 6 %></p>
Jean-Philippe Lang
Adds an application setting to limit the number of items that can be displayed on the gantt chart (#6276)....
r4399
<p><%= setting_text_field :gantt_items_limit, :size => 6 %></p>
Jean-Philippe Lang
Admin settings screen split to tabs....
r1033 </div>
Jean-Philippe Lang
Makes the default issue list columns selection look like other multi-checkbox fieldsets....
r2444 <fieldset class="box settings"><legend><%= l(:setting_issue_list_default_columns) %></legend>
Jean-Philippe Lang
Adds helpers for setting field tags....
r3084 <%= setting_multiselect(:issue_list_default_columns,
Query.new.available_columns.collect {|c| [c.caption, c.name.to_s]}, :label => false) %>
Jean-Philippe Lang
Admin settings screen split to tabs....
r1033 </fieldset>
<%= submit_tag l(:button_save) %>
<% end %>