##// END OF EJS Templates
replace tabs to spaces at app/views/my/blocks/_timelog.html.erb...
replace tabs to spaces at app/views/my/blocks/_timelog.html.erb git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7327 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r7176:bbda20f72ed1
r7207:aff6fe1f7a83
Show More
_form.html.erb
30 lines | 1.2 KiB | text/plain | TextLexer
Toshi MARUYAMA
remove trailing white-spaces from app/views/roles/_form.html.erb...
r7176 <%= error_messages_for 'role' %>
Jean-Philippe Lang
Merged 0.6 branch into trunk....
r663
Jean-Philippe Lang
0.3 unstable...
r10 <div class="box">
Jean-Philippe Lang
Adds an issues visibility level on roles (#7412)....
r5296 <% unless @role.builtin? %>
Jean-Philippe Lang
Don't show attributes on role form for built-in roles....
r777 <p><%= f.text_field :name, :required => true %></p>
Jean-Philippe Lang
Added a 'Assignable' boolean on Role model....
r643 <p><%= f.check_box :assignable %></p>
Jean-Philippe Lang
Adds an issues visibility level on roles (#7412)....
r5296 <% end %>
<p><%= f.select :issues_visibility, Role::ISSUES_VISIBILITY_OPTIONS.collect {|v| [l(v.last), v.first]} %></p>
Jean-Philippe Lang
Workflow copy:...
r1237 <% if @role.new_record? && @roles.any? %>
<p><label><%= l(:label_copy_workflow_from) %></label>
<%= select_tag(:copy_workflow_from, content_tag("option") + options_from_collection_for_select(@roles, :id, :name)) %></p>
<% end %>
Jean-Philippe Lang
Added project module concept....
r714 </div>
Jean-Philippe Lang
Application layout refactored....
r736 <h3><%= l(:label_permissions) %></h3>
Jean-Philippe Lang
Do not toggle assignable check box when using un/check all permissions links on role form....
r1415 <div class="box" id="permissions">
Jean-Philippe Lang
Added project module concept....
r714 <% perms_by_module = @permissions.group_by {|p| p.project_module.to_s} %>
<% perms_by_module.keys.sort.each do |mod| %>
Jean-Philippe Lang
Makes permission screens localized (#2070)....
r1941 <fieldset><legend><%= mod.blank? ? l(:label_project) : l_or_humanize(mod, :prefix => 'project_module_') %></legend>
Jean-Philippe Lang
Added project module concept....
r714 <% perms_by_module[mod].each do |permission| %>
Jean-Philippe Lang
Added label tags on role form permission checkboxes....
r795 <label class="floating">
Jean-Philippe Lang
Added project module concept....
r714 <%= check_box_tag 'role[permissions][]', permission.name, (@role.permissions.include? permission.name) %>
Jean-Philippe Lang
Makes permission screens localized (#2070)....
r1941 <%= l_or_humanize(permission.name, :prefix => 'permission_') %>
Jean-Philippe Lang
Added label tags on role form permission checkboxes....
r795 </label>
Jean-Philippe Lang
Added project module concept....
r714 <% end %>
</fieldset>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <% end %>
Jean-Philippe Lang
Do not toggle assignable check box when using un/check all permissions links on role form....
r1415 <br /><%= check_all_links 'permissions' %>
Jean-Philippe Lang
Merged 0.6 branch into trunk....
r663 <%= hidden_field_tag 'role[permissions][]', '' %>
Jean-Philippe Lang
Added project module concept....
r714 </div>