Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

Create Admin Interface For Objects

#in polls/admin.py
from django.contrib import admin

from .models import Question

admin.site.register(Question)
 
PREVIOUS NEXT
Tagged: #Create #Admin #Interface #For #Objects
ADD COMMENT
Topic
Name
6+9 =