[fix] [minor] create default web page only for first company
diff --git a/setup/doctype/company/company.py b/setup/doctype/company/company.py
index 220c480..9746eb2 100644
--- a/setup/doctype/company/company.py
+++ b/setup/doctype/company/company.py
@@ -68,7 +68,8 @@
 				}).insert()
 			
 	def create_default_web_page(self):
-		if not webnotes.conn.get_value("Website Settings", None, "home_page"):
+		if not webnotes.conn.get_value("Website Settings", None, "home_page") and \
+				not webnotes.conn.sql("select name from tabCompany where name!=%s", self.doc.name):
 			import os
 			with open(os.path.join(os.path.dirname(__file__), "sample_home_page.html"), "r") as webfile:
 				webpage = webnotes.bean({