debian-mirror-gitlab/app/views/shared/_ref_switcher.html.haml

18 lines
1 KiB
Text
Raw Normal View History

2018-03-17 18:26:18 +05:30
- show_create = local_assigns.fetch(:show_create, false)
2016-06-22 15:30:34 +05:30
- dropdown_toggle_text = @ref || @project.default_branch
2017-09-10 17:25:29 +05:30
= form_tag switch_project_refs_path(@project), method: :get, class: "project-refs-form" do
2014-09-02 18:07:02 +05:30
= hidden_field_tag :destination, destination
- if defined?(path)
= hidden_field_tag :path, path
- @options && @options.each do |key, value|
= hidden_field_tag key, value, id: nil
2016-06-22 15:30:34 +05:30
.dropdown
2018-03-17 18:26:18 +05:30
= dropdown_toggle dropdown_toggle_text, { toggle: "dropdown", selected: dropdown_toggle_text, ref: @ref, refs_url: refs_project_path(@project, sort: 'updated_desc'), field_name: 'ref', submit_form_on_click: true, visit: true }, { toggle_class: "js-project-refs-dropdown" }
.dropdown-menu.dropdown-menu-selectable.git-revision-dropdown.dropdown-menu-paging{ class: ("dropdown-menu-align-right" if local_assigns[:align_right]) }
.dropdown-page-one
= dropdown_title _("Switch branch/tag")
= dropdown_filter _("Search branches and tags")
= dropdown_content
= dropdown_loading