gitlabhq/app/views/hooks/new.html.haml

13 lines
359 B
Plaintext
Raw Normal View History

2012-01-04 01:07:56 +01:00
= render "repositories/head"
= form_for [@project, @hook], :as => :hook, :url => project_hooks_path(@project) do |f|
-if @hook.errors.any?
%ul
- @hook.errors.full_messages.each do |msg|
%li= msg
2012-02-18 14:59:01 +01:00
.clearfix
= f.label :url, "URL:"
.input= f.text_field :url, :class => "text_field"
.actions
= f.submit "Save", :class => "btn"
2012-01-04 01:07:56 +01:00