Sha256: 617c4c7a9d40bbf0e139346b54a9362fecd23aab2ed665858b15be9a56df13a4
Contents?: true
Size: 803 Bytes
Versions: 1
Compression:
Stored size: 803 Bytes
Contents
<h2>Account emails</h2> <table id='invoice_table' class='table table-condensed data-table'> <thead> <tr> <th style='width: 45%'>Account id</th> <th style='width: 45%'>Email</th> <th style='width: 10%'></th> </tr> </thead> <tbody> <% @account_emails.each do |account_email| %> <tr> <td><%= link_to account_email.account_id, account_path(account_email.account_id) %></td> <td><%= account_email.email %></td> <td><%= link_to 'Destroy', account_email_path(account_email.account_id, :email => account_email.email), :confirm => 'Are you sure?', :method => :delete %></td> </tr> <% end %> </tbody> </table> <br /> <%= link_to 'New Account email', new_account_email_path(:account_id => @account_id), :class => 'btn btn-primary' %>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
kaui-0.1.3 | app/views/kaui/account_emails/show.html.erb |