You can order the fields as you wish using the ModelAdmin.fields option.
class GenreAdmin(admin.ModelAdmin):
fields = ('title', 'parent')
You can order the fields as you wish using the ModelAdmin.fields option.
class GenreAdmin(admin.ModelAdmin):
fields = ('title', 'parent')