blob: f3cda0314029e7e0a616f5db1d0fa2f8f455cc95 (
plain)
1
2
3
4
5
6
7
8
9
|
<div id="<%= dom_id thing %>" class="thing_row">
<div class="thing_head">
<div class="dot dot_<%= thing.kind %>" title="<%= I18n.t("things.kind.#{thing.kind}") %>"></div>
</div>
<div class="thing_body" title="<%= PlainExporter.new(things: [thing]).export %>">
<%= link_to title_to_html(title: thing.title), edit_thing_path(thing) %>
</div>
<div class="thing_tail"><%= thing.rate %></div>
</div>
|