blob: 6725a3e294805f95ce5fcfa12cdb960a3cef18e6 [file] [log] [blame]
Anand Doshi885e0742015-03-03 14:55:30 +05301# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
Anand Doshi5d591eb2014-04-18 16:15:31 +05302# License: GNU General Public License v3. See license.txt
3
4from __future__ import unicode_literals
5import frappe
6import frappe.website.render
7
Anand Doshi11ada532014-06-27 21:02:55 +05308page_title = "Partners"
9
Anand Doshi5d591eb2014-04-18 16:15:31 +053010def get_context(context):
Anand Doshi11ada532014-06-27 21:02:55 +053011 partners = frappe.db.sql("""select * from `tabSales Partner`
12 where show_in_website=1 order by name asc""", as_dict=True)
13
Anand Doshi5d591eb2014-04-18 16:15:31 +053014 return {
Anand Doshi11ada532014-06-27 21:02:55 +053015 "partners": partners,
16 "title": page_title
Anand Doshi5d591eb2014-04-18 16:15:31 +053017 }