arizonacollab/app/views/spaces/show.html.erb
2013-10-09 05:14:30 -07:00

17 lines
439 B
Plaintext

<p id="notice"><%= notice %></p>
<%= render partial: "space", locals: {space: @space} %>
<%= link_to 'Edit', edit_space_path(@space) %>
<h3>Revision history</h3>
<dl>
<% @space.versions.reverse!.each do |v| %>
<dt><b><%= v.event.capitalize %> <%= v.created_at %> <%= v.whodunnit if v.whodunnit %></b></dt>
<dd>
<% if v.reify %>
<%= render partial: "space", locals: {space: v.reify} %>
<% end %>
</dd>
<% end %>
</dl>