rosa-build/app/views/projects/hooks/index.html.haml

21 lines
655 B
Plaintext
Raw Normal View History

-set_meta_tags :title => [title_object(@project), t('layout.projects.hooks')]
= render 'submenu'
= render 'sidebar'
2013-04-15 10:25:40 +01:00
%h1= t('layout.projects.hooks')
%table#datatable.tablesorter{:cellpadding => "0", :cellspacing => "0"}
%thead
%tr
2013-04-15 10:25:40 +01:00
%th.th1= t('attributes.name')
%th
%tbody
- Hook::NAMES.each do |name|
%tr
%td
2013-04-15 10:25:40 +01:00
= link_to project_hooks_path(@project, :name => name) do
= t("layout.hooks.services.#{name}")
= "(#{@hooks.where(:name => name).count})"
%td.right
2013-04-15 10:25:40 +01:00
= link_to t('layout.create'), new_project_hook_path(@project, :hook => {:name => name}), :class => 'button'