Skip to content

Instantly share code, notes, and snippets.

@gentoid
Created July 18, 2014 08:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gentoid/7113da4a3d12c642dd3a to your computer and use it in GitHub Desktop.
Save gentoid/7113da4a3d12c642dd3a to your computer and use it in GitHub Desktop.
simple HAML temlate
= form_for :article, url: articles_path do |f|
= @article
- if @article.errors.any?
#error_explanation
%h2 Ошибки при создании статьи:
%ul
- @article.errors.full_messages.each do |msg|
%li
= msg
%p
= f.label 'Заголовок статьи'
%br
= f.text_field :title
%p
= f.label 'Текст статьи'
%br
= f.text_area :body
%p
= f.submit 'Сохранить', class: 'btn btn-success'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment