metamaps--metamaps/app/views/items/show.html.erb

35 lines
829 B
Text
Raw Normal View History

2012-09-22 22:39:12 -04:00
<div class="focus">
<div class="focusleft">
<p><%= @item.item_category.name %></p>
2012-10-03 21:40:26 -04:00
<%= image_tag @item.item_category.icon, :class => 'icon', :size => '50x50' %>
2012-09-22 22:39:12 -04:00
</div>
<div class="focusmiddle">
2012-09-23 21:30:48 -04:00
<h1 class="title"><%= @item.name %> <%= link_to "[edit]", edit_item_path(@item) %></h1>
2012-09-22 22:39:12 -04:00
<div class="desc">
<p><%= @item.desc %></p>
</div>
</div>
<div class="focusright">
<p>Link</p>
<%= link_to @item.link, @item.link, :class => 'link', :target => '_blank' %>
2012-09-22 22:39:12 -04:00
</div>
</div>
<div class="clearfloat nodemargin"></div>
<div class="relatives" id="container">
<div id="center-container">
<div id="infovis"></div>
</div>
2012-10-19 00:06:16 -04:00
<div id="showcard">
</div>
</div>
<div class="clearfloat"></div>
<script>
json = <%= @relatives %>;
console.log(json);
$(document).ready(function() {
init();
});
2012-10-17 20:51:54 -04:00
</script>