Skip to content

Commit

Permalink
feat: Added a search feature on skill field in CourseSkills
Browse files Browse the repository at this point in the history
  • Loading branch information
jajjibhai008 committed Aug 22, 2024
1 parent a5b1598 commit 5aac6fd
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ Change Log
Unreleased

[1.52.0] - 2024-08-22
---------------------
* feat: Added a search feature on skill field in CourseSkills

[1.51.1] - 2024-08-21
---------------------
* feat: Added safeguard for nulls before saving job description
Expand Down
2 changes: 1 addition & 1 deletion taxonomy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@
# 2. MINOR version when you add functionality in a backwards compatible manner, and
# 3. PATCH version when you make backwards compatible bug fixes.
# More details can be found at https://semver.org/
__version__ = '1.51.1'
__version__ = '1.52.0'

default_app_config = 'taxonomy.apps.TaxonomyConfig' # pylint: disable=invalid-name
2 changes: 1 addition & 1 deletion taxonomy/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,9 @@ class CourseSkillsTitleAdmin(admin.ModelAdmin):
"""
Administrative view for Course Skills.
"""

list_display = ('id', 'course_key', 'created', 'modified')
search_fields = ('course_key',)
autocomplete_fields = ['skill']


@admin.register(Job)
Expand Down

0 comments on commit 5aac6fd

Please sign in to comment.