I want't to add search in admin site and followed the instructions of
official guide of The Django admin site. But nothing on admin site
changed, nor errors appeared after I changed my code.
following is my code, please help me. Thank you in advance!
entity.models.py code ===================
from django.db import models
from django.contrib.auth.models import User
import datetime
class University(models.Model):
name = models.CharField(max_length=100)
abbreviation = models.CharField(unique=True, max_length=50)
entity.admin.py code ====================
from entity.models import *
from django.contrib import admin
class UniversityAdmin(admin.ModelAdmin):
list_display = ('name', 'abbreviation')
search_fields = ['name']
admin.site.register(University)
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---