AttributeError: 'QuerySet' object has no attribute django
#Method .filter() return a Queryset, from there is impossible to access
#any of his fields.
#Use .get() instead.
#Example
#Instead of:
name = User.objects.filter(username='MitchAloha').first_name
#Use
name = User.objects.get(username='MitchAloha').first_name