a11yist/app/views/links/_link.html.erb

33 lines
472 B
Text
Raw Permalink Normal View History

2024-07-26 00:59:00 +02:00
<div id="<%= dom_id link %>">
<p>
<strong>Url:</strong>
<%= link.url %>
</p>
<p>
<strong>Text:</strong>
<%= link.text %>
</p>
<p>
<strong>Description:</strong>
2024-09-11 20:44:33 +02:00
<%= link.description %>
2024-07-26 00:59:00 +02:00
</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>