Sha256: c5285907f4288cca9898fb6e3cf04176e6dbc8c65b4c0b18ae942967cb13cd44
Contents?: true
Size: 684 Bytes
Versions: 28
Compression:
Stored size: 684 Bytes
Contents
<% page_title 'Contacts' %> <div class="page-header"> <h2>Contacts</h2> </div> <% if !@contacts || @contacts.empty? %> <p>No contacts</p> <% else %> <table class="table table-bordered table-hover table-condensed"> <tr> <th>Name</th> <th>Email</th> </tr> <% @contacts.sort_by {|c| [c.last_name, c.first_name] }.each do |contact| %> <tr> <td><a href="<%= @base_url %>contacts/<%= contact.id %>" title="contact details"><%= h contact.name %></a></td> <td><%= h contact.email %></td> </tr> <% end %> </table> <% end %> <a href="<%= @base_url %>edit_contacts"/> Edit contacts <span class="label label-danger">beta</span> </a>
Version data entries
28 entries across 28 versions & 1 rubygems