Browse Source

Update documentation

Denis K 8 years ago
parent
commit
8089aa47b6
1 changed files with 18 additions and 0 deletions
  1. 18 0
      docs/config_file.rst

+ 18 - 0
docs/config_file.rst

@@ -124,6 +124,24 @@ If want to show all application's models use ``__all__`` keyword.
         ...
     ]
 
+If have multiple admin sites and you want to specify different menu applications for each admin site, wrap menu lists
+in dictionary with admin site names as keys:
+
+.. code:: python
+
+    JET_SIDE_MENU_CUSTOM_APPS = {
+        'admin': [
+            ('core', ['__all__']),
+            ...
+        ],
+        'custom_admin': [
+            ('custom_admin_app', [
+                'CustomAdminAppModel',
+            ]),
+            ...
+        ]
+    }
+
 .. note::
 
     You can use ``jet_custom_apps_example`` management command to generate example ``JET_SIDE_MENU_CUSTOM_APPS``