5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-11-22 21:46:22 +00:00
panel/app/views/schemas/_row.haml
f 5c97637738
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
feat: mostrar la lista de artículos organizada #13072
2023-04-17 18:33:18 -03:00

12 lines
425 B
Text

%tr
%th{ scope: 'row' }
- if local_assigns[:parent_schema]
%span.text-muted —
= schema.humanized_name
%td.px-0= render 'schemas/add', **local_assigns
%td.px-0= 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