a11yist/app/views/links/_link.html.erb
david 174cf9f503
Some checks failed
/ Run tests (push) Failing after 4m20s
/ Build, push and deploy image (push) Has been skipped
/ Run system tests (push) Has been cancelled
Finalize check fields
2024-09-11 20:44:54 +02:00

32 lines
472 B
Text

<div id="<%= dom_id link %>">
<p>
<strong>Url:</strong>
<%= link.url %>
</p>
<p>
<strong>Text:</strong>
<%= link.text %>
</p>
<p>
<strong>Description:</strong>
<%= link.description %>
</p>
<p>
<strong>Last check at:</strong>
<%= link.last_check_at %>
</p>
<p>
<strong>Fail count:</strong>
<%= link.fail_count %>
</p>
<p>
<strong>Link category:</strong>
<%= link.link_category_id %>
</p>
</div>