Redone the list_info function for the Project's manage page.
This will reduce the overhead because Django calls the info method over and over again.
from django.contrib import admin
from django.contrib.sites.models import Site
class SiteAdmin(admin.ModelAdmin):
list_display = ('domain', 'name')
search_fields = ('domain', 'name')
admin.site.register(Site, SiteAdmin)