Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,24 @@ Unreleased

*

[0.1.9] - 2019-08-27
~~~~~~~~~~~~~~~~~~~~

Changed
+++++++

* Fix issue with `UserTaskArtifactAdmin` and `UserTaskStatusAdmin` where `ordering` attribute must be a tuple or list.


[0.1.8] - 2019-08-22
~~~~~~~~~~~~~~~~~~~~

Changed
+++++++

* Improve list display for `ModelAdmin`.
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I added in a CHANGELOG entry for the previous release.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for catching that!



[0.1.7] - 2019-05-29
~~~~~~~~~~~~~~~~~~~~

Expand Down
2 changes: 1 addition & 1 deletion user_tasks/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

from django.dispatch import Signal

__version__ = '0.1.8'
__version__ = '0.1.9'

default_app_config = 'user_tasks.apps.UserTasksConfig' # pylint: disable=invalid-name

Expand Down
4 changes: 2 additions & 2 deletions user_tasks/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class UserTaskArtifactAdmin(admin.ModelAdmin):
"""

list_display = ('created', 'uuid', 'status', 'name', 'text')
ordering = ('created')
ordering = ('created',)
search_fields = ('uuid', 'name', 'text')


Expand All @@ -26,7 +26,7 @@ class UserTaskStatusAdmin(admin.ModelAdmin):
"""

list_display = ('created', 'uuid', 'state', 'user', 'name')
ordering = ('created')
ordering = ('created',)
search_fields = ('uuid', 'task_id', 'task_class', 'user', 'name')


Expand Down