Browse Source

Added context processor with name system

1Mike21 1 năm trước cách đây
mục cha
commit
acb1e88797
1 tập tin đã thay đổi với 4 bổ sung0 xóa
  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}