This repository has been archived on 2020-05-27. You can view files and clone it, but cannot push or open issues/pull-requests.
barleysodas/app/views/invitations/edit.rhtml

12 lines
319 B
Plaintext

<h1>Editing invitation</h1>
<%= error_messages_for :invitation %>
<% form_for(:invitation, :url => invitation_path(@invitation), :html => { :method => :put }) do |f| %>
<p>
<%= submit_tag "Update" %>
</p>
<% end %>
<%= link_to 'Show', invitation_path(@invitation) %> |
<%= link_to 'Back', invitations_path %>