Explorar el Código

Added context processor with name system

1Mike21 hace 1 año
padre
commit
acb1e88797
Se han modificado 1 ficheros con 4 adiciones y 0 borrados
  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}