You can define default ordering for Author model:
class Author(Model):
name = CharField(max_length=100)
class Meta:
ordering = ('name',)
Keep in mind that this causes the objects in Django also to ordered and migration will have to be done.
You can do ordering = ['name'] under the AuthorAdmin file to order only for admin dashboard.