Minor fixes
diff --git a/erpnext/templates/includes/projects/macros.html b/erpnext/templates/includes/projects/macros.html
index eb2b8db..a4abc94 100644
--- a/erpnext/templates/includes/projects/macros.html
+++ b/erpnext/templates/includes/projects/macros.html
@@ -1 +1,2 @@
 {% macro back_link(doc) %}&back-to=/projects?project={{ doc.name }}|{{ doc.project_name }}{% endmacro %}
+
diff --git a/erpnext/templates/includes/projects/project_issues.html b/erpnext/templates/includes/projects/project_issues.html
index 0d569d8..5f9d26f 100644
--- a/erpnext/templates/includes/projects/project_issues.html
+++ b/erpnext/templates/includes/projects/project_issues.html
@@ -4,7 +4,7 @@
 		<div class='issue'>
 			<div class='row project-item'>
 				<div class='col-xs-9'>
-					<a class="no-decoration" href="/issues?name={{ issue.name}}{{ back_link(doc) }}">
+					<a class="no-decoration" href="/issues-view?name={{ issue.name}}{{ back_link(doc) }}">
 						<span class="indicator {{ "red" if issue.status=="Open" else "green" }}">
 							{% if issue.status == "Closed" %}
 							{{ issue.subject }} resolved {{ frappe.utils.pretty_date(issue.resolution_date) }}
@@ -22,12 +22,7 @@
 						<span class="avatar avatar-small avatar-empty"></span>
 						{% endif %}
 					</div>
-					<div class='pull-right' style='padding-right:10px;'>
-						{% if issue.status != "Closed" %}
-						<span class="text-extra-muted "> <i class="octicon octicon-x issue-x" title="Close" id = "{{issue.name}}"></i> 				</span>
-						{% endif %}
-					</div>
 				</div>
 			</div>
 		</div>
-{% endfor %}
+{% endfor %}
\ No newline at end of file
diff --git a/erpnext/templates/includes/projects/project_tasks.html b/erpnext/templates/includes/projects/project_tasks.html
index a951712..78cd9b6 100644
--- a/erpnext/templates/includes/projects/project_tasks.html
+++ b/erpnext/templates/includes/projects/project_tasks.html
@@ -21,11 +21,6 @@
 					<span class="avatar avatar-small avatar-empty"></span>
 					{% endif %}
 				</div>
-				<div class='pull-right' style='padding-right:10px;'>
-					{% if task.status != "Closed" %}
-					<span class="text-extra-muted "> <i class="octicon octicon-x task-x" title="Close" id = "{{task.name}}"></i> 				</span>
-					{% endif %}
-				</div>
 			</div>
 		</div>
 	</div>