Sometimes you want to show either existing tables or auto-generated tables in Django Admin. You obviously *don't* want {{syncdb}} to attempt to create them. The solution is to move the class {{ModelName(models.Model)}} from {{models.py}} to {{admin.py}}. Don't forget to create the appropriate {{ModelNameAdmin(admin.ModelAdmin)}} if necessary. ---- [Django | CategoryComputing.Lang.Python.Django]