Free and open source ticket system written in python
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'