10 lines
253 B
Python
10 lines
253 B
Python
# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
|
|
# License: MIT. See LICENSE
|
|
from frappe import _
|
|
|
|
no_cache = 1
|
|
|
|
|
|
def get_context(context):
|
|
context.no_breadcrumbs = True
|
|
context.parents = [{"name": "me", "title": _("My Account")}]
|