diff --git a/app/views/issues/_form.html.haml b/app/views/issues/_form.html.haml
index 64cff087..4a552634 100644
--- a/app/views/issues/_form.html.haml
+++ b/app/views/issues/_form.html.haml
@@ -5,18 +5,18 @@
- if request.xhr?
= link_to "#back", :onclick => "backToIssues();" do
.entity-button
- Back
+ Issues
%i
- else
- if @issue.new_record?
= link_to project_issues_path(@project) do
.entity-button
- Back
+ Issues
%i
- else
= link_to project_issue_path(@project, @issue) do
.entity-button
- Back
+ Show Issue
%i
%h2= @issue.new_record? ? "New Issue" : "Edit Issue ##{@issue.id}"
diff --git a/app/views/merge_requests/_form.html.haml b/app/views/merge_requests/_form.html.haml
index d7f612b8..85f765eb 100644
--- a/app/views/merge_requests/_form.html.haml
+++ b/app/views/merge_requests/_form.html.haml
@@ -4,12 +4,12 @@
- if @merge_request.new_record?
= link_to project_merge_requests_path(@project) do
.entity-button
- Back
+ Merge Requests
%i
- else
= link_to project_merge_request_path(@project, @merge_request) do
.entity-button
- Back
+ Show Merge Request
%i
%h2= @merge_request.new_record? ? "New Merge Request" : "Edit Merge Request ##{@merge_request.id}"
diff --git a/app/views/team_members/show.html.haml b/app/views/team_members/show.html.haml
index f3f5ed23..6293eee9 100644
--- a/app/views/team_members/show.html.haml
+++ b/app/views/team_members/show.html.haml
@@ -4,7 +4,7 @@
%span.entity-info
= link_to team_project_path(@project) do
.entity-button
- Back
+ Team
%i
= image_tag gravatar_icon(user.email), :class => "left", :width => 40, :style => "padding-right:5px;"