Skip to content

Commit c47ec55

Browse files
committed
update version to 1.7.1
1 parent 99a220a commit c47ec55

File tree

3 files changed

+16
-11
lines changed

3 files changed

+16
-11
lines changed

adminlteui/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
version = '1.7.0'
1+
version = '1.7.1'
22
default_app_config = 'adminlteui.apps.AdminlteUIConfig'

docs/about.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
# ChangeLog
2+
## [v1.7.1](https://github.com/wuyue92tree/django-adminlte-ui/releases/tag/1.7.0)
3+
- fix exception when delete in changelist_view
4+
- update docs
25

36
## [v1.7.0](https://github.com/wuyue92tree/django-adminlte-ui/releases/tag/1.7.0)
47
- make previous & next button effective on change_list.html

docs/guide.md

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -264,17 +264,19 @@ Modify apps icon & order apps/models
264264

265265
```python
266266
ADMINLTE_SETTINGS = {
267-
'example-app': {
268-
'icon': 'fa-desktop',
269-
'models': {
270-
'example-model': {
271-
'icon': 'fa-archive'
272-
},
273-
'example-model1': {}
267+
'apps': {
268+
'example-app': {
269+
'icon': 'fa-desktop',
270+
'models': {
271+
'example-model': {
272+
'icon': 'fa-archive'
273+
},
274+
'example-model1': {}
275+
}
276+
},
277+
'auth': {
278+
'icon': 'fa-users'
274279
}
275-
},
276-
'auth': {
277-
'icon': 'fa-users'
278280
}
279281
}
280282
```

0 commit comments

Comments
 (0)