Nevar pievienot vairāk kā 25 tēmas
Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
|
- # Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
- # MIT License. See license.txt
-
- from __future__ import unicode_literals
- import webnotes
- from webnotes.webutils import render_blocks
-
- no_cache = 1
- no_sitemap = 1
-
- def get_context(context):
- error_context = {"error": webnotes.get_traceback()}
- error_context.update(context)
-
- return render_blocks(error_context)
|