blob: 2d2cc0a8925ec910f4c82076d28688db80f3b7cd [file] [log] [blame]
Rushabh Mehta81af2292016-12-09 17:29:19 +05301from __future__ import unicode_literals
2
3docs_version = "7.x.x"
4
Nabin Hait7ba4d022015-11-05 16:55:10 +05305source_link = "https://github.com/frappe/erpnext"
6docs_base_url = "https://frappe.github.io/erpnext"
Rushabh Mehtaab7021c2015-12-03 17:52:46 +05307headline = "ERPNext Documentation"
8sub_heading = "Detailed explanation for all ERPNext features and developer API"
Rushabh Mehtaedc8ab02015-11-18 16:48:19 +05309long_description = """ERPNext is a fully featured ERP system designed for Small and Medium Sized
10business. ERPNext covers a wide range of features including Accounting, CRM,
11Inventory management, Selling, Purchasing, Manufacturing, Projects, HR &
12Payroll, Website, E-Commerce and much more.
Nabin Hait7ba4d022015-11-05 16:55:10 +053013
Rushabh Mehtaedc8ab02015-11-18 16:48:19 +053014ERPNext is based on the Frappe Framework is highly customizable and extendable.
15You can create Custom Form, Fields, Scripts and can also create your own Apps
16to extend ERPNext functionality.
Nabin Hait7ba4d022015-11-05 16:55:10 +053017
Rushabh Mehtaedc8ab02015-11-18 16:48:19 +053018ERPNext is Open Source under the GNU General Public Licence v3 and has been
Umair Sayyed6a3f51b2016-08-03 17:07:26 +053019listed as one of the Best Open Source Softwares in the world by many online
Rushabh Mehtaedc8ab02015-11-18 16:48:19 +053020blogs."""
Nabin Hait7ba4d022015-11-05 16:55:10 +053021
Rushabh Mehta2f273672015-12-04 16:00:38 +053022splash_light_background = True
Rushabh Mehta81af2292016-12-09 17:29:19 +053023google_analytics_id = 'UA-8911157-22'
Rushabh Mehtaab7021c2015-12-03 17:52:46 +053024
Nabin Hait7ba4d022015-11-05 16:55:10 +053025def get_context(context):
Rushabh Mehta0d5d4ae2016-11-21 18:47:00 +053026 context.brand_html = ('<img class="brand-logo" src="'+context.docs_base_url
27 +'/assets/img/erpnext-docs.png"> ERPNext</img>')
Rushabh Mehta2f273672015-12-04 16:00:38 +053028 context.app.splash_light_background = True
Nabin Haitf9ef0e42015-11-06 15:43:32 +053029 context.top_bar_items = [
Rushabh Mehtaab7021c2015-12-03 17:52:46 +053030 {"label": "User Manual", "url": context.docs_base_url + "/user/manual", "right": 1},
Nabin Haitf9ef0e42015-11-06 15:43:32 +053031 {"label": "Videos", "url": context.docs_base_url + "/user/videos", "right": 1},
Rushabh Mehta0d5d4ae2016-11-21 18:47:00 +053032 {"label": "API", "url": context.docs_base_url + "/current", "right": 1},
33 {"label": "Forum", "url": 'https://discuss.erpnext.com', "right": 1}
Anand Doshi1c1eb702015-11-10 18:58:56 +053034 ]