Skip to content

Commit 8ede7d5

Browse files
committed
update docs
1 parent 93ed4b6 commit 8ede7d5

File tree

1 file changed

+28
-1
lines changed

1 file changed

+28
-1
lines changed

docs/guide.md

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,4 +162,31 @@ url_name=video_parsed_changelist, app_names=['admin'], namespaces=['admin'], rou
162162
163163
```
164164

165-
django url name = namespaces:url_name
165+
django url name = namespaces:url_name
166+
167+
## settings
168+
169+
```python
170+
# in your setting.py
171+
# this is the default settings
172+
# what the setting work for? [You can see](https://github.com/wuyue92tree/django-adminlte-ui/pull/6)
173+
174+
ADMINLTE_SETTINGS = {
175+
'demo': True,
176+
'search_form': True,
177+
# 'skin': 'blue',
178+
# 'copyright': '<a href="https://github.com/wuyue92tree/django-adminlte-ui/tree/'+version+'">django-adminlte-ui '+version+'</a>',
179+
# 'navigation_expanded': True,
180+
181+
# if you are use custom menu, which will not effective below!
182+
183+
# 'show_apps': ['django_admin_settings', 'auth', 'main'],
184+
# 'main_navigation_app': 'django_admin_settings',
185+
# 'icons': {
186+
# 'myapp': {
187+
# 'shops': 'fa-shopping-cart',
188+
# 'products': 'fa-dollar',
189+
# }
190+
# }
191+
}
192+
```

0 commit comments

Comments
 (0)