blob: 94b553c2b2a121bfe46632ee0181c42b38a9d755 [file] [log] [blame]
Anand Doshi5d591eb2014-04-18 16:15:31 +05301# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
2# License: GNU General Public License v3. See license.txt
3
4from __future__ import unicode_literals
5import frappe
6import frappe.website.render
7
8def get_context(context):
9 return {
10 "partners": frappe.db.sql("""select * from `tabSales Partner`
11 where show_in_website=1 order by name asc""", as_dict=True),
12 "title": "Partners"
13 }