Advertisement
Guest User

Untitled

a guest
Jun 15th, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. # -*- coding: utf-8 -*-
  2. from __future__ import unicode_literals
  3.  
  4. from django.contrib import admin
  5. from .models import AccountModel
  6. #class AccountAdmin(admin.ModelAdmin):
  7. #account_id = models.CharField(max_length=10)
  8.  
  9. class AccountAdmin(admin.ModelAdmin):
  10. search_fields = ['account_id']
  11. list_display = ['account_id',]
  12. list_per_page = 50
  13. admin.site.register(AccountModel,AccountAdmin)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement