2015-09-11 14:41:01 +05:30
|
|
|
- page_title "Network", @ref
|
2016-08-24 12:49:21 +05:30
|
|
|
- content_for :page_specific_javascripts do
|
|
|
|
= page_specific_javascript_tag('lib/raphael.js')
|
|
|
|
= page_specific_javascript_tag('network/network_bundle.js')
|
2015-12-23 02:04:40 +05:30
|
|
|
= render "projects/commits/head"
|
2014-09-02 18:07:02 +05:30
|
|
|
= render "head"
|
2016-08-24 12:49:21 +05:30
|
|
|
%div{ class: container_class }
|
2016-06-16 23:09:34 +05:30
|
|
|
.project-network
|
|
|
|
.controls
|
|
|
|
= form_tag namespace_project_network_path(@project.namespace, @project, @id), method: :get, class: 'form-inline network-form' do |f|
|
2016-11-03 12:29:30 +05:30
|
|
|
= text_field_tag :extended_sha1, @options[:extended_sha1], placeholder: "Git revision", class: 'search-input form-control input-mx-250 search-sha'
|
2016-06-16 23:09:34 +05:30
|
|
|
= button_tag class: 'btn btn-success' do
|
|
|
|
= icon('search')
|
|
|
|
.inline.prepend-left-20
|
|
|
|
.checkbox.light
|
|
|
|
= label_tag :filter_ref do
|
|
|
|
= check_box_tag :filter_ref, 1, @options[:filter_ref]
|
|
|
|
%span Begin with the selected commit
|
2014-09-02 18:07:02 +05:30
|
|
|
|
2016-08-24 12:49:21 +05:30
|
|
|
.network-graph{ data: { url: @url, commit_url: @commit_url, ref: @ref, commit_id: @commit.id } }
|
2016-06-16 23:09:34 +05:30
|
|
|
= spinner nil, true
|