File tree 1 file changed +40
-2
lines changed
1 file changed +40
-2
lines changed Original file line number Diff line number Diff line change 2
2
Usage
3
3
========
4
4
5
- To use django-modeladmin-reorder in a project ::
5
+ 1. Add ` admin_reorder ` to ` INSTALLED_APPS ` ::
6
6
7
- import django-modeladmin-reorder
7
+ INSTALLED_APPS = (
8
+ ...
9
+ 'admin_reorder',
10
+ ...
11
+ )
12
+
13
+
14
+ 2. Add the `ModelAdminReorder ` to `MIDDLEWARE_CLASSES `::
15
+
16
+
17
+ MIDDLEWARE_CLASSES = (
18
+ ...
19
+ 'admin_reorder.middleware.ModelAdminReorder',
20
+ ...
21
+ )
22
+
23
+
24
+ 3. Add the setting `ADMIN_REORDER ` to your settings.py::
25
+
26
+
27
+ ADMIN_REORDER = (
28
+ # Keep original label and models
29
+ 'sites',
30
+
31
+ # Rename app
32
+ {'app': 'auth', 'label': 'Authorisation'},
33
+
34
+ # Reorder app models
35
+ {'app': 'auth', 'models': ('auth.User', 'auth.Group')},
36
+
37
+ # Cross-linked models
38
+ {'app': 'auth', 'models': ('auth.User', 'sites.Site')},
39
+
40
+ # models with custom name
41
+ {'app': 'auth', 'models': (
42
+ 'auth.User',
43
+ {'model': 'auth.Group', 'label': 'User Group'},
44
+ )},
45
+ )
You can’t perform that action at this time.
0 commit comments