diff --git a/app/views/tree/_blob.html.haml b/app/views/tree/_blob.html.haml
index bae5b53..93271d9 100644
--- a/app/views/tree/_blob.html.haml
+++ b/app/views/tree/_blob.html.haml
@@ -4,12 +4,7 @@
%span.file_name
= blob.name.force_encoding('utf-8')
%small #{blob.mode}
- %span.options
- .btn-group.tree-btn-group
- = link_to "raw", project_blob_path(@project, @id), class: "btn very_small", target: "_blank"
- = link_to "history", project_commits_path(@project, @id), class: "btn very_small"
- = link_to "blame", project_blame_path(@project, @id), class: "btn very_small"
- = link_to "edit", edit_project_tree_path(@project, @id), class: "btn very_small"
+ %span.options= render "tree/blob_actions"
- if blob.text?
- if gitlab_markdown?(blob.name)
.file_content.wiki
diff --git a/app/views/tree/_blob_actions.html.haml b/app/views/tree/_blob_actions.html.haml
new file mode 100644
index 0000000..27f835e
--- /dev/null
+++ b/app/views/tree/_blob_actions.html.haml
@@ -0,0 +1,5 @@
+.btn-group.tree-btn-group
+ = link_to "raw", project_blob_path(@project, @id), class: "btn very_small", target: "_blank"
+ = link_to "history", project_commits_path(@project, @id), class: "btn very_small"
+ = link_to "blame", project_blame_path(@project, @id), class: "btn very_small"
+ = link_to "edit", edit_project_tree_path(@project, @id), class: "btn very_small"
--
libgit2 0.21.2