10 lines
158 B
Python
10 lines
158 B
Python
import frappe
|
|
from frappe import _
|
|
|
|
no_cache = 1
|
|
|
|
def get_context(context):
|
|
context.no_cache = 1
|
|
context.title = _("eBay Pricing")
|
|
return context
|