To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.
root / app / views / settings / _projects.rhtml @ 442:753f1380d6bc
History | View | Annotate | Download (661 Bytes)
| 1 |
<% form_tag({:action => 'edit', :tab => 'projects'}) do %>
|
|---|---|
| 2 |
|
| 3 |
<div class="box tabular settings"> |
| 4 |
<p><%= setting_check_box :default_projects_public %></p> |
| 5 |
|
| 6 |
<p><%= setting_multiselect(:default_projects_modules, |
| 7 |
Redmine::AccessControl.available_project_modules.collect {|m| [l_or_humanize(m, :prefix => "project_module_"), m.to_s]}) %></p> |
| 8 |
|
| 9 |
<p><%= setting_check_box :sequential_project_identifiers %></p> |
| 10 |
|
| 11 |
<p><%= setting_select :new_project_user_role_id, |
| 12 |
Role.find_all_givable.collect {|r| [r.name, r.id.to_s]},
|
| 13 |
:blank => "--- #{l(:actionview_instancetag_blank_option)} ---" %></p> |
| 14 |
</div>
|
| 15 |
|
| 16 |
<%= submit_tag l(:button_save) %>
|
| 17 |
<% end %>
|