2015-11-05 16:55:10 +05:30
|
|
|
source_link = "https://github.com/frappe/erpnext"
|
|
|
|
docs_base_url = "https://frappe.github.io/erpnext"
|
2015-12-03 17:52:46 +05:30
|
|
|
headline = "ERPNext Documentation"
|
|
|
|
sub_heading = "Detailed explanation for all ERPNext features and developer API"
|
2015-11-18 16:48:19 +05:30
|
|
|
long_description = """ERPNext is a fully featured ERP system designed for Small and Medium Sized
|
|
|
|
business. ERPNext covers a wide range of features including Accounting, CRM,
|
|
|
|
Inventory management, Selling, Purchasing, Manufacturing, Projects, HR &
|
|
|
|
Payroll, Website, E-Commerce and much more.
|
2015-11-05 16:55:10 +05:30
|
|
|
|
2015-11-18 16:48:19 +05:30
|
|
|
ERPNext is based on the Frappe Framework is highly customizable and extendable.
|
|
|
|
You can create Custom Form, Fields, Scripts and can also create your own Apps
|
|
|
|
to extend ERPNext functionality.
|
2015-11-05 16:55:10 +05:30
|
|
|
|
2015-11-18 16:48:19 +05:30
|
|
|
ERPNext is Open Source under the GNU General Public Licence v3 and has been
|
2016-08-03 17:07:26 +05:30
|
|
|
listed as one of the Best Open Source Softwares in the world by many online
|
2015-11-18 16:48:19 +05:30
|
|
|
blogs."""
|
2015-11-05 16:55:10 +05:30
|
|
|
|
2015-12-03 17:52:46 +05:30
|
|
|
docs_version = "6.x.x"
|
2015-12-04 16:00:38 +05:30
|
|
|
splash_light_background = True
|
2015-12-03 17:52:46 +05:30
|
|
|
|
2015-11-05 16:55:10 +05:30
|
|
|
def get_context(context):
|
2016-04-12 23:58:20 +05:30
|
|
|
context.brand_html = "ERPNext"
|
2015-12-04 16:00:38 +05:30
|
|
|
context.app.splash_light_background = True
|
2015-11-06 15:43:32 +05:30
|
|
|
context.top_bar_items = [
|
2015-12-03 17:52:46 +05:30
|
|
|
{"label": "User Manual", "url": context.docs_base_url + "/user/manual", "right": 1},
|
2015-11-06 15:43:32 +05:30
|
|
|
{"label": "Videos", "url": context.docs_base_url + "/user/videos", "right": 1},
|
2016-02-17 17:14:08 +05:30
|
|
|
{"label": "API Documentation", "url": context.docs_base_url + "/current", "right": 1}
|
2015-11-10 18:58:56 +05:30
|
|
|
]
|