Ejemplo n.º 1
0
    def customer_context(self, project):
        profile_is_complete = False

        if project is not None:
            intake_complete = ProjectIntakeFormIsCompleteBunch(project=project)
            profile_is_complete = intake_complete.is_valid()

        return {
            'profile_is_complete': profile_is_complete,
        }