adm18/ntuh/context_processors.py
2025-09-16 13:20:19 +08:00

14 lines
No EOL
308 B
Python
Executable file

# -*- 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,
}