Sha256: f2e57030540d3c21e40cdc4a4c657455bcbd9b44161d65abef8af0ba24dbbbab

Contents?: true

Size: 663 Bytes

Versions: 2

Compression:

Stored size: 663 Bytes

Contents

<h1><%= _("Editing article") %></h1>

<%= error_messages_for :article %>

<% form_for(@article) do |f| %>
  <p>
   <p><%= f.label :lastupdate %></p>
   <p><%= f.date_select :lastupdate, :use_month_numbers => true %></p>
   <p><%= f.label :title, _("Title: Required.") %></p>
   <p><%= f.text_field :title %></p>
   <p><%= f.label :title, _("Description: More than 10 characters.") %></p>
   <p><%= f.text_area :description %></p>
   <p><%= f.submit _("Edit") %></p>
  </p>
<% end %>

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

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
gettext_rails-2.0.0 sample/app/views/articles/edit.html.erb
gettext_rails-2.0.1 sample/app/views/articles/edit.html.erb