5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-07-05 20:45:47 +00:00
panel/app/views/schemas/_row.haml

14 lines
442 B
Plaintext
Raw Normal View History

%tr
2023-04-21 17:14:39 +00:00
%th.w-100{ scope: 'row' }
- if local_assigns[:parent_schema]
%span.text-muted —
= schema.humanized_name
2023-04-21 17:14:39 +00:00
%td.px-0.text-nowrap
= render 'schemas/add', **local_assigns
= render 'schemas/filter', **local_assigns
-# XXX: Solo un nivel de recursividad
- unless local_assigns[:parent_schema]
- schema.schemas.each do |s|
= render 'schemas/row', schema: s, site: site, filter: filter, parent_schema: schema