mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-08 08:27:44 +08:00
9 lines
451 B
Text
9 lines
451 B
Text
|
<div class="sketch-container" data-sketch-id="<%= sketch.id %>" >
|
||
|
<img src class="sketch-image">
|
||
|
<%= hidden_field_tag :description, sketch.description %>
|
||
|
<div class="sketch-name"><%= truncate(sketch.name, length: Constants::FILENAME_TRUNCATION_LENGTH) %></div>
|
||
|
<div class="sketch-object">
|
||
|
<%= t('marvinjs.task') %>: <%= truncate(sketch.object.protocol.my_module.name,
|
||
|
length: Constants::FILENAME_TRUNCATION_LENGTH) %>
|
||
|
</div>
|
||
|
</div>
|