Custom TemplateTags
https://docs.djangoproject.com/en/1.8/howto/custom-template-tags/#assignment-tags
# combo_tags.py
@register.assignment_tag
def cvlist_status(cvlist):
''' Retorna True se o cvlist foi processado com erro. '''
res = cvlist.cv_lists.filter(status=False, resume_text='').first()