您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

18 行
556 B

  1. # Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
  2. # MIT License. See license.txt
  3. from __future__ import unicode_literals
  4. import webnotes
  5. no_sitemap = 1
  6. base_template_path = "templates/pages/website_script.js"
  7. def get_context(context):
  8. script_context = { "javascript": webnotes.conn.get_value('Website Script', None, 'javascript') }
  9. if not webnotes.conf.developer_mode:
  10. script_context["google_analytics_id"] = webnotes.conn.get_value("Website Settings", "Website Settings",
  11. "google_analytics_id")
  12. return script_context