Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/snippets/_form.html.haml')
-rw-r--r--app/views/snippets/_form.html.haml22
1 files changed, 22 insertions, 0 deletions
diff --git a/app/views/snippets/_form.html.haml b/app/views/snippets/_form.html.haml
new file mode 100644
index 00000000000..571e2b063c1
--- /dev/null
+++ b/app/views/snippets/_form.html.haml
@@ -0,0 +1,22 @@
+%div
+ = form_for [@project, @snippet] do |f|
+ -if @snippet.errors.any?
+ %ul
+ - @snippet.errors.full_messages.each do |msg|
+ %li= msg
+
+ %table.round-borders
+ %tr
+ %td= f.label :title
+ %td= f.text_field :title, :placeholder => "Example Snippet"
+ %tr
+ %td= f.label :file_name
+ %td= f.text_field :file_name, :placeholder => "example.rb"
+ %tr
+ %td{:colspan => 2}
+ = f.label :content, "Code"
+ %br
+ = f.text_area :content, :style => "height:240px;width:932px;"
+
+ .actions.prepend-top
+ = f.submit 'Save', :class => "lbutton vm"