2015-04-30 15:14:26 -04:00
|
|
|
- page_title "Network", @ref
|
2016-06-23 12:33:38 -04:00
|
|
|
- content_for :page_specific_javascripts do
|
2016-06-23 13:42:52 -04:00
|
|
|
= page_specific_javascript_tag('lib/raphael.js')
|
2016-07-12 16:30:09 -04:00
|
|
|
= page_specific_javascript_tag('network/network_bundle.js')
|
2015-12-08 20:50:46 -05:00
|
|
|
= render "projects/commits/head"
|
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
|
|
|
|
= form_tag namespace_project_network_path(@project.namespace, @project, @id), method: :get, class: 'form-inline network-form' do |f|
|
2016-11-05 23:33:39 -04:00
|
|
|
= text_field_tag :extended_sha1, params[: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
|
|
|
|
.checkbox.light
|
|
|
|
= label_tag :filter_ref do
|
|
|
|
= check_box_tag :filter_ref, 1, @options[:filter_ref]
|
|
|
|
%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
|