Skip to content

Commit

Permalink
update version to 1.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
wuyue92tree committed Jun 30, 2022
1 parent 99a220a commit c47ec55
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 11 deletions.
2 changes: 1 addition & 1 deletion adminlteui/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
version = '1.7.0'
version = '1.7.1'
default_app_config = 'adminlteui.apps.AdminlteUIConfig'
3 changes: 3 additions & 0 deletions docs/about.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# ChangeLog
## [v1.7.1](https://github.com/wuyue92tree/django-adminlte-ui/releases/tag/1.7.0)
- fix exception when delete in changelist_view
- update docs

## [v1.7.0](https://github.com/wuyue92tree/django-adminlte-ui/releases/tag/1.7.0)
- make previous & next button effective on change_list.html
Expand Down
22 changes: 12 additions & 10 deletions docs/guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -264,17 +264,19 @@ Modify apps icon & order apps/models

```python
ADMINLTE_SETTINGS = {
'example-app': {
'icon': 'fa-desktop',
'models': {
'example-model': {
'icon': 'fa-archive'
},
'example-model1': {}
'apps': {
'example-app': {
'icon': 'fa-desktop',
'models': {
'example-model': {
'icon': 'fa-archive'
},
'example-model1': {}
}
},
'auth': {
'icon': 'fa-users'
}
},
'auth': {
'icon': 'fa-users'
}
}
```

0 comments on commit c47ec55

Please sign in to comment.