shafafiyat/common/context_processors.py
2025-08-10 07:44:23 +03:30

9 lines
No EOL
196 B
Python

from datetime import datetime
def current_year(request):
"""
Context processor to add current year to all templates
"""
return {
'current_year': datetime.now().year
}