diff --git a/app/views/admin/shared/_common_globalize_locales.html.erb b/app/views/admin/shared/_common_globalize_locales.html.erb
index fc4ad763a..b4633cde2 100644
--- a/app/views/admin/shared/_common_globalize_locales.html.erb
+++ b/app/views/admin/shared/_common_globalize_locales.html.erb
@@ -8,17 +8,7 @@
<% end %>
-
- <% I18n.available_locales.each do |locale| %>
- -
- <%= link_to name_for_locale(locale), "#",
- style: display_style.call(locale),
- class: "js-globalize-locale-link #{highlight_class(resource, locale)}",
- data: { locale: locale },
- remote: true %>
-
- <% end %>
-
+<%= render "admin/shared/globalize_tabs", resource: resource, display_style: display_style %>
<%= select_tag :translation_locale,
diff --git a/app/views/admin/shared/_globalize_tabs.html.erb b/app/views/admin/shared/_globalize_tabs.html.erb
new file mode 100644
index 000000000..15ed0ff09
--- /dev/null
+++ b/app/views/admin/shared/_globalize_tabs.html.erb
@@ -0,0 +1,11 @@
+
+ <% I18n.available_locales.each do |locale| %>
+ -
+ <%= link_to name_for_locale(locale), "#",
+ style: display_style.call(locale),
+ class: "js-globalize-locale-link #{highlight_class(resource, locale)}",
+ data: { locale: locale },
+ remote: true %>
+
+ <% end %>
+