Skip to content

Instantly share code, notes, and snippets.

@thelazyliz
Last active August 1, 2017 06:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thelazyliz/0d5fe90fb510b68514103ca94e69a4eb to your computer and use it in GitHub Desktop.
Save thelazyliz/0d5fe90fb510b68514103ca94e69a4eb to your computer and use it in GitHub Desktop.
change what is being displayed using list_display in django admin change list page
from django.contrib import admin
from . models import Book
class BookAdmin(admin.ModelAdmin):
list_display = ('book_title', 'author', 'ISBN_code')
admin.site.register(Book, BookAdmin)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment