aboutsummaryrefslogtreecommitdiffstats
path: root/config/breadcrumbs.rb
diff options
context:
space:
mode:
Diffstat (limited to 'config/breadcrumbs.rb')
-rw-r--r--config/breadcrumbs.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/config/breadcrumbs.rb b/config/breadcrumbs.rb
index adcbb0b6f..87d6f5846 100644
--- a/config/breadcrumbs.rb
+++ b/config/breadcrumbs.rb
@@ -111,11 +111,21 @@ crumb :imports do |workbench|
parent :workbench, workbench
end
+crumb :exports do |workbench|
+ link I18n.t('exports.index.title'), workbench_exports_path(workbench)
+ parent :workbench, workbench
+end
+
crumb :import do |workbench, import|
link breadcrumb_name(import), workbench_import_path(workbench, import)
parent :imports, workbench
end
+crumb :export do |workbench, export|
+ link breadcrumb_name(export), workbench_export_path(workbench, export)
+ parent :exports, workbench
+end
+
crumb :import_resources do |import, import_resources|
link I18n.t('import_resources.index.title'), workbench_import_import_resources_path(import.workbench, import.parent)
parent :import, import.workbench, import.parent