a11yist/app/views/elements/_element.html.erb

17 lines
376 B
Text
Raw Normal View History

<div id="<%= dom_id element %>" class="mt-3">
<h2><i class="bi bi-card-checklist me-2"></i>
<%= element.title %></h2>
<p>
<strong>Path:</strong>
<%= element.path %>
</p>
2024-07-19 02:29:18 +02:00
<%= element.description_html %>
<% element.success_criteria.each do |sc| %>
2024-07-19 02:29:18 +02:00
<%= turbo_frame_tag(dom_id(sc, :frame)) do %>
<%= render sc %>
<% end %>
<% end %>
</div>