mirror of
https://github.com/meineerde/redmine.git
synced 2026-03-11 19:53:07 +00:00
Eg. if B is a subproject of A, a user with a role on A will automatically have the same role on B. It can be overridden by assigning a different role manually to this user on B. git-svn-id: http://redmine.rubyforge.org/svn/branches/work@1054 e93f8b46-1217-0410-a6f0-8f06a7374b81
11 lines
365 B
Plaintext
11 lines
365 B
Plaintext
<% form_tag({:action => 'edit'}) do %>
|
|
|
|
<div class="box tabular settings">
|
|
<p><label><%= l(:setting_subprojects_inherit_members) %></label>
|
|
<%= check_box_tag 'settings[subprojects_inherit_members]', 1, Setting.subprojects_inherit_members? %>
|
|
<%= hidden_field_tag 'settings[subprojects_inherit_members]', 0 %></p>
|
|
</div>
|
|
|
|
<%= submit_tag l(:button_save) %>
|
|
<% end %>
|