I like using Atom for Django projects and most of the autocomplete is working as well as linting but ....
I would thing the the type of the model fields could be autocompleted for example:
name = models.***CharField***(max_length=256)
age = models.***PositiveIntegerField***()
school = models.***ForeignKey***(School, related_name='students')
is there a plugin that autocompletes these db filed types?