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

21 lines
631 B
Plaintext
Raw Normal View History

2014-01-21 04:51:49 +00:00
-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')
2014-01-21 04:51:49 +00:00
%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
2014-01-21 04:51:49 +00:00
= link_to project_hooks_path(@project, name: name) do
2013-04-15 10:25:40 +01:00
= t("layout.hooks.services.#{name}")
2014-01-21 04:51:49 +00:00
= "(#{@hooks.where(name: name).count})"
%td.right
2014-01-21 04:51:49 +00:00
= link_to t('layout.create'), new_project_hook_path(@project, hook: {name: name}), class: 'button'