14 lines
404 B
Python
14 lines
404 B
Python
|
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
|
||
|
# License: GNU General Public License v3. See license.txt
|
||
|
|
||
|
from __future__ import unicode_literals
|
||
|
import frappe
|
||
|
import frappe.website.render
|
||
|
|
||
|
def get_context(context):
|
||
|
return {
|
||
|
"partners": frappe.db.sql("""select * from `tabSales Partner`
|
||
|
where show_in_website=1 order by name asc""", as_dict=True),
|
||
|
"title": "Partners"
|
||
|
}
|