Sha256: b2369733911de7b9b5e5abcfd0466000756cc69dc4d737d27b0900a1158d60ca

Contents?: true

Size: 510 Bytes

Versions: 4

Compression:

Stored size: 510 Bytes

Contents

<h3><%= _("Inbound links") %></h3>
  <% if @inbound_links.nil? %>
    <%= _('You have no internet connection') %>
  <% else %>
    <ul>
      <% if @inbound_links.size == 0 %>
        <li><%= _("No one made a link to you yet") %></li>
      <% else %>
        <% for link in @inbound_links -%>
          <li>
            <%= link_to(link.author, link.link) + _(" made a link to you saying ") + link.description.slice(0, 100) + "[...]"%> 
          </li>
        <% end %>
      <% end %>
    </ul>
  <% end %>

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
typo-5.4.3 app/views/admin/dashboard/_inbound.html.erb
typo-5.4.2 app/views/admin/dashboard/_inbound.html.erb
typo-5.4.1 app/views/admin/dashboard/_inbound.html.erb
typo-5.4 app/views/admin/dashboard/_inbound.html.erb