Skip to content

Commit fa41dc7

Browse files
authored
Merge pull request #203 from openedx/eahmadjaved/ENT-9301
feat: Added a search feature on skill field in CourseSkills
2 parents a5b1598 + 884cb31 commit fa41dc7

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

CHANGELOG.rst

+4
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ Change Log
1313
1414
Unreleased
1515

16+
[1.52.0] - 2024-08-22
17+
---------------------
18+
* feat: Added a search feature on skill field in CourseSkills
19+
1620
[1.51.1] - 2024-08-21
1721
---------------------
1822
* feat: Added safeguard for nulls before saving job description

taxonomy/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@
1515
# 2. MINOR version when you add functionality in a backwards compatible manner, and
1616
# 3. PATCH version when you make backwards compatible bug fixes.
1717
# More details can be found at https://semver.org/
18-
__version__ = '1.51.1'
18+
__version__ = '1.52.0'
1919

2020
default_app_config = 'taxonomy.apps.TaxonomyConfig' # pylint: disable=invalid-name

taxonomy/admin.py

+1
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@ class CourseSkillsTitleAdmin(admin.ModelAdmin):
9494

9595
list_display = ('id', 'course_key', 'created', 'modified')
9696
search_fields = ('course_key',)
97+
autocomplete_fields = ['skill']
9798

9899

99100
@admin.register(Job)

0 commit comments

Comments
 (0)