2017-07-12 04:35:53 -04:00
|
|
|
- breadcrumb_title "Graph"
|
2017-03-02 12:57:01 -05:00
|
|
|
- page_title "Graph", @ref
|
2013-02-04 22:46:31 -05:00
|
|
|
= render "head"
|
2016-06-30 09:01:26 -04:00
|
|
|
%div{ class: container_class }
|
2016-06-03 14:09:45 -04:00
|
|
|
.project-network
|
|
|
|
.controls
|
2017-06-29 13:06:35 -04:00
|
|
|
= form_tag project_network_path(@project, @id), method: :get, class: 'form-inline network-form' do |f|
|
2018-02-07 22:46:58 -05:00
|
|
|
= text_field_tag :extended_sha1, @options[:extended_sha1], placeholder: _("Git revision"), class: 'search-input form-control input-mx-250 search-sha'
|
2016-06-03 14:09:45 -04:00
|
|
|
= button_tag class: 'btn btn-success' do
|
|
|
|
= icon('search')
|
|
|
|
.inline.prepend-left-20
|
2018-04-11 14:05:57 -04:00
|
|
|
.form-check.light
|
2018-05-31 15:20:46 -04:00
|
|
|
= check_box_tag :filter_ref, 1, @options[:filter_ref], class: 'form-check-input'
|
|
|
|
= label_tag :filter_ref, class: 'form-check-label' do
|
2018-02-07 22:46:58 -05:00
|
|
|
%span= _("Begin with the selected commit")
|
2014-06-14 12:35:45 -04:00
|
|
|
|
2016-10-28 07:38:14 -04:00
|
|
|
- if @commit
|
|
|
|
.network-graph{ data: { url: @url, commit_url: @commit_url, ref: @ref, commit_id: @commit.id } }
|
|
|
|
= spinner nil, true
|