11 lines
278 B
Python
11 lines
278 B
Python
# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
|
|
# MIT License. See license.txt
|
|
from __future__ import unicode_literals
|
|
|
|
from frappe import _
|
|
|
|
no_sitemap = 1
|
|
no_cache = 1
|
|
|
|
def get_context(context):
|
|
context.parents = [{"name":"me", "title":_("My Account")}]
|