Skip to content

Commit

Permalink
Merge pull request #2390 from akvo/#2389-show-employment-group
Browse files Browse the repository at this point in the history
[#2389] Display group in Employment admin page. Code reviewed, looks fine. May not fix the original problem however, more discussion in #2374
  • Loading branch information
zzgvh authored Oct 5, 2016
2 parents 8df33fc + 148edde commit 6796130
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions akvo/rsr/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -1352,8 +1352,8 @@ class KeywordAdmin(admin.ModelAdmin):

class EmploymentAdmin(admin.ModelAdmin):
model = get_model('rsr', 'Employment')
list_display = ('__unicode__', 'user', 'organisation', 'is_approved', 'iati_country',
'job_title')
list_display = ('__unicode__', 'user', 'organisation', 'group', 'is_approved',
'iati_country', 'job_title')
list_filter = ('is_approved', 'organisation')
search_fields = ('organisation__name', 'organisation__long_name', 'user__username')

Expand Down

0 comments on commit 6796130

Please sign in to comment.