25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

website_script.py 464 B

1234567891011121314
  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. return {
  9. "javascript": webnotes.conn.get_value('Website Script', None, 'javascript'),
  10. "google_analytics_id": webnotes.conn.get_value("Website Settings", "Website Settings", "google_analytics_id")
  11. }