index.html.haml 725 Bytes
= render "projects/project_head"

- if can? current_user, :admin_project, @project
  .alert-message.block-message
    Post receive hooks for binding events when someone push to repository.
    = link_to new_project_hook_path(@project), :class => "btn small", :title => "New Web Hook" do 
      Add Post Receive Hook

    %p Read more about web hooks #{link_to "here", help_web_hooks_path, :class => "vlink"}

-if @hooks.any?
  %table
    - @hooks.each do |hook|
      %tr
        %td
          = link_to project_hook_path(@project, hook) do
            = hook.url
        %td
          = link_to 'Remove', project_hook_path(@project, hook), :confirm => 'Are you sure?', :method => :delete, :class => "danger btn small right"