Sha256: 928328565a2b862093c89680d195193ec4264bd2d89953509da2bf6112779263
Contents?: true
Size: 489 Bytes
Versions: 1
Compression:
Stored size: 489 Bytes
Contents
<% unless @routes.empty? %> <div> <h3>Recent updates</h3> <table> <thead> <tr> <th>Resource</th> <th>Updated at</th> </tr> </thead> <tbody> <% @routes.each do |item|%> <tr> <td> <%= link_to item.verb + " " + item.path, route_path(:id => generate_name(item.verb, item.path)) %> </td> <td> <%= time_ago_in_words(Time.at(item.updated_at))%> ago </td> </tr> <% end %> </tbody> </table> </div> <% end %>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
docushin-0.0.2 | app/views/docushin/home/index.html.erb |