]> source.dussan.org Git - redmine.git/commitdiff
Move 'New enumeration' links to above the item tables (#24776).
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Sat, 14 Jan 2017 10:03:26 +0000 (10:03 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Sat, 14 Jan 2017 10:03:26 +0000 (10:03 +0000)
Patch by Mischa The Evil.

git-svn-id: http://svn.redmine.org/redmine/trunk@16186 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/views/enumerations/index.html.erb

index 5f1d2eafbef390add8b47d47944e9e10bc21c375..b832d5c99e9ef78b69a5dd200d8938d923675a83 100644 (file)
@@ -4,6 +4,9 @@
 <h3><%= l(klass::OptionName) %></h3>
 
 <% enumerations = klass.shared %>
+
+<p><%= link_to l(:label_enumeration_new), new_enumeration_path(:type => klass.name) %></p>
+
 <% if enumerations.any? %>
 <table class="list enumerations"><thead>
 <tr>
@@ -26,8 +29,6 @@
 </table>
 <% reset_cycle %>
 <% end %>
-
-<p><%= link_to l(:label_enumeration_new), new_enumeration_path(:type => klass.name) %></p>
 <% end %>
 
 <% html_title(l(:label_enumerations)) -%>