Sha256: bc9e8a2202d59698b4ac9deca05b4eaa4dcf7ee380ca984fafc0a2c6b5ca7488
Contents?: true
Size: 654 Bytes
Versions: 750
Compression:
Stored size: 654 Bytes
Contents
<h1>Permanent Redirects</h1> <p><a href='/admin/redirects/new'>New Redirect</a></p> <% if @redirects && @redirects.count > 0 %> <table class='data'> <tr> <th>Priority</th> <th>Is Regex</th> <th>Old URL</th> <th>New URL</th> </tr> <% @redirects.each do |pr| %> <tr onclick="window.location='/admin/redirects/<%= pr.id %>';"> <td align='right'><%= pr.priority %></td> <td><%= pr.is_regex ? 'Yes' : 'No' %></td> <td><%= raw pr.old_url %></td> <td><%= raw pr.new_url %></td> </tr> <% end %> </table> <% else %> <p>There are no redirects right now.</p> <% end %>
Version data entries
750 entries across 750 versions & 1 rubygems