aboutsummaryrefslogtreecommitdiff
path: root/app/views/resources/_resource.html.erb
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/resources/_resource.html.erb')
-rw-r--r--app/views/resources/_resource.html.erb10
1 files changed, 5 insertions, 5 deletions
diff --git a/app/views/resources/_resource.html.erb b/app/views/resources/_resource.html.erb
index f013523..585bed8 100644
--- a/app/views/resources/_resource.html.erb
+++ b/app/views/resources/_resource.html.erb
@@ -1,9 +1,9 @@
<section id="resource-<%= resource.uuid %>">
<header>
- <h2><%= h resource.name %></h2>
+ <h2><%= resource.properties['name'] %></h2>
<time datetime="<%= h resource.created_at %>" class="created_at">
- <time datetime="<%= h resource.updated_at %>" class="updated_at">
- <p class="identifier"><%= resource_url(resource) %></p>
+ <time datetime="<%= h resource.updated_at %>" class="updated_at">
+ <p class="identifier"><%= resource_url(resource) %></p>
</header>
<div><%= h resource.description %></div>
<hr>
@@ -13,8 +13,8 @@
<ul>
<li><%= link_to('show', resource_url(resource)) %></li>
<% if session[:current_agent] == resource.source %>
- <li><%= link_to 'edit', edit_resource_url(resource) %></li>
- <li><span class="disabled">delete</span></li>
+ <li><%= link_to 'edit', edit_resource_url(resource) %></li>
+ <li><span class="disabled">delete</span></li>
<% end %></ul>
</nav>
</section>