adm18/ntuh/context_processors.py

14 lines
308 B
Python
Raw Permalink Normal View History

2025-09-16 05:20:19 +00:00
# -*- coding: utf-8 -*-
from ntuh import settings
import os
ABSPATH = os.path.abspath(os.path.dirname(__file__))
def context_processors(request):
return {
'open_icon_library': 'http://www.ntuh.net/open_icon_library-full/',
'specialty': settings.SPECIALTY,
}