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

31 lines
1.2 KiB
Text
Raw Permalink Normal View History

2024-07-26 00:59:00 +02:00
<h1><%= t("scaffold.pagetitle_index", model: Link.model_name.human(count: 2)) %></h1>
<table class="table table-striped">
<thead>
<tr>
<th></th>
<th><%= LinkCategory.model_name.human %></th>
<th><%= Link.human_attribute_name(:url) %></th>
<th><%= Link.human_attribute_name(:text) %></th>
<th><%= Link.human_attribute_name(:description) %></th>
<th><%= Link.human_attribute_name(:last_check_at) %></th>
</tr>
</thead>
<tbody>
<% @links.each do |link| %>
<tr>
<td><%= link_to(tag.i(class: link.ok? ? "bi bi-check" : "bi bi-x-lg"), url_for(link)) %></td>
<td><%= link_to(link.link_category.name, url_for(link)) %></td>
<td><%= link_to(truncate(link.url), link.url, target: "_blank", rel: "nofollow") %></td>
<td><%= link_to(link.text, url_for(link)) %></td>
2024-09-11 20:44:33 +02:00
<td><%= link_to(truncate(link.description.to_plain_text), url_for(link)) %></td>
2024-07-26 00:59:00 +02:00
<td><%= link.last_check_at && l(link.last_check_at, format: :short) %></td>
</tr>
<% end %>
</tbody>
</table>
<div class="action-row">
<%= link_to t("scaffold.link_new", model: Link.model_name.human), new_link_path %>
</div>