adm-ntuh-net/ntuh/context_processors.py
2024-12-12 10:19:16 +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,
}