Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

about.py 406 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. from webnotes.webutils import render_blocks
  6. def get_context(context):
  7. about_context = {
  8. "obj": webnotes.bean("About Us Settings", "About Us Settings").get_controller()
  9. }
  10. about_context.update(context)
  11. return render_blocks(about_context)