]> source.dussan.org Git - redmine.git/commitdiff
Don't show attributes on role form for built-in roles.
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Mon, 1 Oct 2007 14:00:38 +0000 (14:00 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Mon, 1 Oct 2007 14:00:38 +0000 (14:00 +0000)
git-svn-id: http://redmine.rubyforge.org/svn/trunk@788 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/views/roles/_form.rhtml
app/views/roles/edit.rhtml

index 73299293e0f73824742417c9522f4fc99b77365d..8dab8129a069d6840e28abfa1268fa3747ffe997 100644 (file)
@@ -1,10 +1,11 @@
 <%= error_messages_for 'role' %> 
 
+<% unless @role.builtin? %>
 <div class="box">
-<p><%= f.text_field :name, :required => true, :disabled => @role.builtin? %></p>
+<p><%= f.text_field :name, :required => true %></p>
 <p><%= f.check_box :assignable %></p>
 </div>
-
+<% end %>
 
 <h3><%= l(:label_permissions) %></h3>
 <div class="box">
index 4a591e3e42bbe1f08aa7769bd466bd2a7290bc09..e53a0f545fb3f35a1e83380b71fa15b79013bf6f 100644 (file)
@@ -1,4 +1,4 @@
-<h2><%=l(:label_role)%></h2> 
+<h2><%=l(:label_role)%>: <%= @role.name %></h2> 
 
 <% labelled_tabular_form_for :role, @role, :url => { :action => 'edit' }, :html => {:id => 'role_form'} do |f| %>
 <%= render :partial => 'form', :locals => { :f => f } %>