Browse Source

Set titles on Groups pages (#14517)

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@12049 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/2.4.0
Jean-Philippe Lang 11 years ago
parent
commit
1e738fbaca

+ 1
- 3
app/views/groups/edit.html.erb View File

@@ -1,5 +1,3 @@
<h2><%= link_to l(:label_group_plural), groups_path %> &#187; <%= h(@group) %></h2>
<%= title [l(:label_group_plural), groups_path], @group.name %>

<%= render_tabs group_settings_tabs %>

<% html_title(l(:label_group), @group, l(:label_administration)) -%>

+ 1
- 1
app/views/groups/index.html.erb View File

@@ -2,7 +2,7 @@
<%= link_to l(:label_group_new), new_group_path, :class => 'icon icon-add' %>
</div>

<h2><%= l(:label_group_plural) %></h2>
<%= title l(:label_group_plural) %>

<% if @groups.any? %>
<table class="list groups">

+ 1
- 1
app/views/groups/new.html.erb View File

@@ -1,4 +1,4 @@
<h2><%= link_to l(:label_group_plural), groups_path %> &#187; <%= l(:label_group_new) %></h2>
<%= title [l(:label_group_plural), groups_path], l(:label_group_new) %>

<%= labelled_form_for @group do |f| %>
<%= render :partial => 'form', :locals => { :f => f } %>

+ 1
- 1
app/views/groups/show.html.erb View File

@@ -1,4 +1,4 @@
<h2><%= link_to l(:label_group_plural), groups_path %> &#187; <%=h @group %></h2>
<%= title [l(:label_group_plural), groups_path], @group.name %>

<ul>
<% @group.users.each do |user| %>

Loading…
Cancel
Save