Anand Doshi | 5d591eb | 2014-04-18 16:15:31 +0530 | [diff] [blame] | 1 | # Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors |
2 | # License: GNU General Public License v3. See license.txt | ||||
3 | |||||
4 | from __future__ import unicode_literals | ||||
5 | import frappe | ||||
6 | import frappe.website.render | ||||
7 | |||||
8 | def 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 | } |