adm-ntuh-net/ntuh/context_processors.py

14 lines
308 B
Python
Raw Normal View History

2024-12-12 02:19:16 +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,
}