Skip to content

Instantly share code, notes, and snippets.

@solidpple
Created December 18, 2017 13:26
Show Gist options
  • Save solidpple/99fac558a96c422cd18265d41ed1e685 to your computer and use it in GitHub Desktop.
Save solidpple/99fac558a96c422cd18265d41ed1e685 to your computer and use it in GitHub Desktop.
from django.contrib import admin
from .models import Question
class QuestionAdmin(admin.ModelAdmin):
fields = ['pub_date', 'question_text']
admin.site.register(Question, QuestionAdmin)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment