<%= _("New article") %>

<%= error_messages_for :article %> <% form_for(@article) do |f| %>

<%= f.label :lastupdate %>

<%= f.date_select :lastupdate, :order => [:year, :month, :day], :use_month_numbers => true %>

<%= f.label :title, _("Title: Required.") %>

<%= f.text_field :title %>

<%= f.label :title, _("Description: More than 10 characters.") %>

<%= f.text_area :description %>

<%= f.submit _("Create") %>

<% end %>

<%= link_to _('Back'), articles_path %>