Sha256: aadd777dd32f129b803f060f24586d6e65b8c3a6f0f585f8fd4af625302f236a

Contents?: true

Size: 494 Bytes

Versions: 6

Compression:

Stored size: 494 Bytes

Contents

<div class="dashboard">
  <h3><%= _("Last Comments") %></h3>
  <ul>
    <% if @comments.size == 0 %>
      <li <%= alternate_class %>><%= _("No comments yet") %></li>
    <% else %>
      <% for comment in @comments -%>
        <li <%= alternate_class %>>
          <% title = ''; title << 'by ' + comment.author -%>
          <% title << ' on ' + comment.article.title -%>
          <%= link_to_permalink comment,h(title) %>
        </li>
      <% end %>
    <% end %>
  </ul>
  <hr />
</div>

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
typo-5.0.3.98.1 app/views/admin/dashboard/_comments.html.erb
typo-5.0.3.98 app/views/admin/dashboard/_comments.html.erb
typo-5.1.1 app/views/admin/dashboard/_comments.html.erb
typo-5.1.2 app/views/admin/dashboard/_comments.html.erb
typo-5.1.3 app/views/admin/dashboard/_comments.html.erb
typo-5.1 app/views/admin/dashboard/_comments.html.erb