debian-mirror-gitlab/app/views/projects/network/show.html.haml

28 lines
1 KiB
Text
Raw Normal View History

2015-09-11 14:41:01 +05:30
- page_title "Network", @ref
2015-12-23 02:04:40 +05:30
= render "projects/commits/header_title"
= render "projects/commits/head"
2014-09-02 18:07:02 +05:30
= render "head"
.project-network
.controls
2015-04-26 12:48:37 +05:30
= form_tag namespace_project_network_path(@project.namespace, @project, @id), method: :get, class: 'form-inline network-form' do |f|
= text_field_tag :extended_sha1, @options[:extended_sha1], placeholder: "Input an extended SHA1 syntax", class: 'search-input form-control input-mx-250 search-sha'
2015-09-11 14:41:01 +05:30
= button_tag class: 'btn btn-success' do
= icon('search')
2014-09-02 18:07:02 +05:30
.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
.network-graph
= spinner nil, true
:javascript
2015-04-26 12:48:37 +05:30
network_graph = new Network({
2015-09-11 14:41:01 +05:30
url: "#{escape_javascript(@url)}",
commit_url: "#{escape_javascript(@commit_url)}",
ref: "#{escape_javascript(@ref)}",
2014-09-02 18:07:02 +05:30
commit_id: '#{@commit.id}'
})
2015-04-26 12:48:37 +05:30
new ShortcutsNetwork(network_graph.branch_graph)