
from .models import CompanyProfile

def company_profile(request):
    """
    Context processor to make company profile available in all templates
    """
    try:
        profile = CompanyProfile.objects.first()
        return {'company_profile': profile}
    except CompanyProfile.DoesNotExist:
        return {'company_profile': None}
