2012-05-17 18:11:45 +02:00
|
|
|
%ul.nav.nav-tabs
|
|
|
|
%li
|
2012-08-11 00:07:50 +02:00
|
|
|
= form_tag switch_project_refs_path(@project), method: :get, class: "project-refs-form", remote: true do
|
2012-09-10 08:09:55 +02:00
|
|
|
= select_tag "ref", grouped_options_refs, onchange: "$(this.form).trigger('submit');", class: "project-refs-select chosen"
|
2012-05-17 18:11:45 +02:00
|
|
|
= hidden_field_tag :destination, "tree"
|
|
|
|
= hidden_field_tag :path, params[:path]
|
2012-08-11 00:07:50 +02:00
|
|
|
%li{class: "#{'active' if (controller.controller_name == "refs") }"}
|
2012-06-04 00:37:27 +02:00
|
|
|
= link_to tree_project_ref_path(@project, @ref) do
|
2012-05-17 23:23:18 +02:00
|
|
|
Source
|
2012-09-03 21:30:14 +02:00
|
|
|
%li.right
|
|
|
|
.input-prepend.project_clone_holder
|
|
|
|
%button{class: "btn small active", :"data-clone" => @project.ssh_url_to_repo} SSH
|
|
|
|
%button{class: "btn small", :"data-clone" => @project.http_url_to_repo} HTTP
|
|
|
|
= text_field_tag :project_clone, @project.url_to_repo, class: "one_click_select span5"
|