Free and open source ticket system written in python
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 5edd527aaba4e33b526f04f58d0db2b8a4ef278e 13 lines 548 B view raw
1from django.contrib import admin 2from .models import FblAccount 3 4@admin.register(FblAccount) 5class FblAccountAdmin(admin.ModelAdmin): 6 list_display = ["system_username", "username", "badge_number", "status", "tags_secured", "created_at"] 7 search_fields = ["badge_number", "username"] 8 list_filter = ["status"] 9 readonly_fields = ["badge_number", "account_id", "username", "status", "tags_secured", "created_at"] 10 11 def system_username(self, x): 12 return x.user.username 13 system_username.short_description = 'System Username'