"""
Context processors to add common variables to all templates
"""

def currency_symbol(request):
    """Add currency symbol to all templates"""
    return {
        'CURRENCY_SYMBOL': '₹'
    }
