<%= _("Editing 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 _("Edit") %>

<% end %>

<%= link_to _('Show'), @article %> | <%= link_to _('Destroy'), @article, :confirm => _('Are you sure?'), :method => :delete %> | <%= link_to _('Back'), articles_path %>