2015-08-09 12:15:05 +03:00

35 lines
1.0 KiB
HTML

<:Title>
registers index
<:Body>
<div class="registers-view">
{{ model.each do |reg| }}
<div class="register-view">
<div>
<div class="field">
{{ reg.name }}
</div>
<div class="value">
<span class="value-head">
{{ reg.value }}
</span>
</div>
</div>
{{ reg.fields.each_with_index do |attribute, index| }}
<div>
<div class="field">
<span class="simptip-position-left" data-tooltip="{{attribute.class}}">
{{index}}{{marker(attribute)}}
</span>
</div>
<div class="value">
<span class="simptip-position-right simptip-multiline" data-tooltip="long text with initlong text with initlong text with initlong text with initlong text with initlong text with initlong text with init">
{{attribute.object_id}}
</span>
</div>
</div>
{{end}}
</div>
{{end}}
</div>