fix: indicator ofor template task
diff --git a/erpnext/patches/v13_0/update_project_template_tasks.py b/erpnext/patches/v13_0/update_project_template_tasks.py
index 886616e..5fa0623 100644
--- a/erpnext/patches/v13_0/update_project_template_tasks.py
+++ b/erpnext/patches/v13_0/update_project_template_tasks.py
@@ -32,12 +32,11 @@
                     description = task.description,
                     is_template = 1
                 )).insert()
-                print(new_task)
                 new_tasks.append(new_task)
+
         if replace_tasks:
             template.tasks = []
             for tsk in new_tasks:
-                print(tsk.name, tsk.subject)
                 template.append("tasks", {
                     "task": tsk.name,
                     "subject": tsk.subject
diff --git a/erpnext/projects/doctype/task/task_list.js b/erpnext/projects/doctype/task/task_list.js
index 941fe97..39734ee 100644
--- a/erpnext/projects/doctype/task/task_list.js
+++ b/erpnext/projects/doctype/task/task_list.js
@@ -20,7 +20,8 @@
 			"Pending Review": "orange",
 			"Working": "orange",
 			"Completed": "green",
-			"Cancelled": "dark grey"
+			"Cancelled": "dark grey",
+			"Template": "blue"
 		}
 		return [__(doc.status), colors[doc.status], "status,=," + doc.status];
 	},