seitime-frappe/frappe/www/about.py
2018-04-02 18:16:18 +05:30

14 lines
341 B
Python

# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
# MIT License. See license.txt
from __future__ import unicode_literals
import frappe
def get_context(context):
context.doc = frappe.get_doc("About Us Settings", "About Us Settings")
context.parents = [
{ "name": frappe._("Home"), "route": "/" }
]
return context