12 lines
284 B
Python
12 lines
284 B
Python
# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
|
|
# MIT License. See license.txt
|
|
|
|
from __future__ import unicode_literals
|
|
import frappe
|
|
|
|
sitemap = 1
|
|
|
|
def get_context(context):
|
|
context.doc = frappe.get_doc("About Us Settings", "About Us Settings")
|
|
|
|
return context
|