a11yist/app/views/pages/_page.html.erb
david fd2a166025
Some checks failed
/ Run tests (push) Failing after 1m9s
/ Run system tests (push) Failing after 1m14s
/ Build, push and deploy image (push) Has been skipped
gui improvements
2024-11-01 03:59:49 +01:00

17 lines
448 B
Text

<div id="<%= dom_id page %>" class="mb-3">
<h2>
<i class="bi bi-file"></i>
<%= page.position %> <%= page.path %></h2>
<p>url: <%= page.url %></p>
<div id="element_list">
<% page.elements.each do |element| %>
<%= render element %>
<% end %>
</div>
<div>
<%= turbo_frame_tag "new_element_frame" do %>
<%= render partial: "pages/new_element_button", locals: { page: page } %>
<% end %>
</div>
</div>