rubyx-debugger/app/main/views/objects/index.html

17 lines
342 B
HTML
Raw Normal View History

2015-08-16 09:01:12 +02:00
<:Title>
objects index
<:Body>
<li>
<a href="#">{{attrs.object}}</a>
{{ if(is_object?(attrs.id) and (attrs.level < 4)) }}
<ul>
{{content(attrs.id).each do |con3| }}
<li>
<a href="#">{{con3[0]}}</a>
</li>
{{end}}
</ul>
{{ end }}
</li>