diff --git a/sources/entity/ui/tmgmt_entity_ui.module b/sources/entity/ui/tmgmt_entity_ui.module
index d40cb53..fddefc6 100644
--- a/sources/entity/ui/tmgmt_entity_ui.module
+++ b/sources/entity/ui/tmgmt_entity_ui.module
@@ -15,6 +15,13 @@ function tmgmt_entity_ui_page_alter(&$page) {
     module_load_include('inc', 'tmgmt_entity_ui', 'tmgmt_entity_ui.pages');
     $page['content']['system_main']['entity_translation_overview'] = drupal_get_form('tmgmt_entity_ui_translate_form', $page['content']['system_main']);
   }
+  // When the context module is used for reodering the system_main block, main
+  // content ends up nested one level deeper under another 'content' key.
+  elseif (isset($page['content']['system_main']['content']['entity_translation_overview'])) {
+    module_load_include('inc', 'tmgmt_entity_ui', 'tmgmt_entity_ui.pages');
+    $page['content']['system_main']['content']['entity_translation_overview'] = drupal_get_form('tmgmt_entity_ui_translate_form', $page['content']['system_main']['content']);
+  }
 }
 
 /**
