Sha256: ad2fc33ac024999a0c1c0dedb54b723098fb09863a4e113147f013965e4d1357
Contents?: true
Size: 711 Bytes
Versions: 24
Compression:
Stored size: 711 Bytes
Contents
<% # edit.rhtml - a sample script for Ruby on Rails # # Copyright (C) 2005 Masao Mutoh # # This file is distributed under the same license as Ruby-GetText-Package. # Views are bound a textdomain which is bound in application.rb or # blog_controller.rb. # So you don't need to call bindtextdomain here. %> <h1><%= _('Editing article') %></h1> <%= start_form_tag :action => 'update', :id => @article %> <%= render_partial 'form' %> <p><%= submit_tag _('Edit') %></p> <%= end_form_tag %> <p> <%= link_to _('Show'), :action => 'show', :id => @article %> | <%= link_to _('Destroy'), {:action => 'destroy', :id => @article}, :confirm => _('Are you sure?') %> | <%= link_to _('Back'), :action => 'list' %> </p>
Version data entries
24 entries across 24 versions & 1 rubygems