Sha256: 893c52ca9a026bbc39bd58157fe84d51cefdfc3b5467dc02e309c7d7bf7a1f03
Contents?: true
Size: 800 Bytes
Versions: 1
Compression:
Stored size: 800 Bytes
Contents
<h2 class='float-left'>Contacts</h2> <%= render 'admin/shared/nav' %> <div class='clearfix'></div> <hr/> <table class="table table-bordered"> <thead class="table-active"> <th>ID</th> <th>First Name</th> <th>Last Name</th> <th>Company</th> <th>Email</th> <th>Phone</th> </thead> <tbody> <% @contacts.each do |contact| %> <tr> <td><%= contact.id %></td> <td><%= contact.first_name %></td> <td><%= contact.last_name %></td> <td><%= contact.company %></td> <td><%= contact.email %></td> <td><%= contact.phone %></td> </tr> <% end %> </tbody> </table> </div> </div> </div> <br>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
blast_contacts-0.0.1 | app/views/blast/admin/contacts/index.html.erb |