Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 3dc31df5f1 | |||
| 8ded8e160b | |||
| f4e5662e49 |
@@ -4,6 +4,9 @@ All notable changes to this project will be documented in this file.
|
|||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## [0.18.1](https://github.com/fabiocaccamo/django-admin-interface/releases/tag/0.18.1) - 2021-10-25
|
||||||
|
- Removed wrong migration.
|
||||||
|
|
||||||
## [0.18.0](https://github.com/fabiocaccamo/django-admin-interface/releases/tag/0.18.0) - 2021-10-24
|
## [0.18.0](https://github.com/fabiocaccamo/django-admin-interface/releases/tag/0.18.0) - 2021-10-24
|
||||||
- Added foldable apps support. #117
|
- Added foldable apps support. #117
|
||||||
- Removed `css` field from `Theme` model.
|
- Removed `css` field from `Theme` model.
|
||||||
|
|||||||
@@ -26,6 +26,7 @@ django-admin-interface is a modern **responsive flat admin interface customizabl
|
|||||||
- Environment name/marker
|
- Environment name/marker
|
||||||
- Language chooser
|
- Language chooser
|
||||||
- List filter dropdown
|
- List filter dropdown
|
||||||
|
- `NEW` **Foldable apps** *(accordions in the navigation bar)*
|
||||||
- `NEW` **List filter sticky**
|
- `NEW` **List filter sticky**
|
||||||
- `NEW` **Form controls sticky** *(pagination and save/delete buttons)*
|
- `NEW` **Form controls sticky** *(pagination and save/delete buttons)*
|
||||||
- Compatibility / Style optimizations for:
|
- Compatibility / Style optimizations for:
|
||||||
|
|||||||
@@ -1,19 +0,0 @@
|
|||||||
# -*- coding: utf-8 -*-
|
|
||||||
|
|
||||||
from __future__ import unicode_literals
|
|
||||||
|
|
||||||
from django.db import migrations
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
('admin_interface', '0023_theme_foldable_apps'),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.RemoveField(
|
|
||||||
model_name='theme',
|
|
||||||
name='css',
|
|
||||||
),
|
|
||||||
]
|
|
||||||
@@ -1,3 +1,3 @@
|
|||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
__version__ = '0.18.0'
|
__version__ = '0.18.1'
|
||||||
|
|||||||
Reference in New Issue
Block a user