소스 검색

Added context processor with name system

1Mike21 1 년 전
부모
커밋
acb1e88797
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 4 0
      context_processors.py

+ 4 - 0
context_processors.py

@@ -0,0 +1,4 @@
+from core import settings
+
+def get_name_system(request):
+    return {'NameSystem':settings.NAME_SYSTEM}