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