##// END OF EJS Templates
Makes tickets and timelogs filters collapsible (UI)....
Makes tickets and timelogs filters collapsible (UI). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2891 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r2773:7b0cb6aba871
r2777:3477ded32af3
Show More
_projects.rhtml
19 lines | 919 B | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
Adds an option to generate sequential project identifiers....
r1776 <% form_tag({:action => 'edit', :tab => 'projects'}) do %>
<div class="box tabular settings">
<p><label><%= l(:setting_default_projects_public) %></label>
Eric Davis
Upgraded to Rails 2.3.4 (#3597)...
r2773 <%= hidden_field_tag 'settings[default_projects_public]', 0 %>
<%= check_box_tag 'settings[default_projects_public]', 1, Setting.default_projects_public? %>
</p>
Jean-Philippe Lang
Adds an option to generate sequential project identifiers....
r1776
<p><label><%= l(:setting_sequential_project_identifiers) %></label>
Eric Davis
Upgraded to Rails 2.3.4 (#3597)...
r2773 <%= hidden_field_tag 'settings[sequential_project_identifiers]', 0 %>
<%= check_box_tag 'settings[sequential_project_identifiers]', 1, Setting.sequential_project_identifiers? %>
</p>
Jean-Philippe Lang
Adds a setting to choose which role is given to a non-admin user who creates a project (#1007)....
r2655
<p><label><%= l(:setting_new_project_user_role_id) %></label>
Jean-Philippe Lang
Fixes drop-down list selected value (#3472)....
r2686 <%= select_tag('settings[new_project_user_role_id]', options_for_select([["--- #{l(:actionview_instancetag_blank_option)} ---", '']] + Role.find_all_givable.collect {|r| [r.name, r.id]}, Setting.new_project_user_role_id.to_i)) %></p>
Jean-Philippe Lang
Adds an option to generate sequential project identifiers....
r1776 </div>
<%= submit_tag l(:button_save) %>
<% end %>