2024-03-08 16:58:10 +00:00
|
|
|
%tr.border-top.border-magenta
|
2024-06-14 19:05:03 +00:00
|
|
|
%th.font-weight-normal.w-100.position-relative.px-3.py-2{ scope: 'row' }
|
2023-04-17 21:31:51 +00:00
|
|
|
- if local_assigns[:parent_schema]
|
|
|
|
%span.text-muted —
|
2024-03-13 20:52:47 +00:00
|
|
|
= render 'schemas/add', schema: schema, **local_assigns
|
2024-06-04 15:49:37 +00:00
|
|
|
|
2023-04-17 21:31:51 +00:00
|
|
|
-# XXX: Solo un nivel de recursividad
|
|
|
|
- unless local_assigns[:parent_schema]
|
|
|
|
- schema.schemas.each do |s|
|
2024-01-15 17:36:07 +00:00
|
|
|
- next if s.hidden?
|
2024-03-26 18:01:59 +00:00
|
|
|
|
2024-06-04 15:49:37 +00:00
|
|
|
= render 'schemas/row', schema: s,
|
|
|
|
site: site,
|
|
|
|
filter: filter,
|
|
|
|
parent_schema: schema
|