Sha256: 1725d320c74266219f371184b79bfb36a24de80b826145b8ee174e14fdd144c0
Contents?: true
Size: 1.01 KB
Versions: 1
Compression:
Stored size: 1.01 KB
Contents
<div> <div class="ui top attached menu borderless"> <div class="item"><strong>Promote Buyers</strong></div> </div> <div class="ui segment bottom attached"> <%# render 'search_form' %> </div> <div class="ui segment top attached"> <%= link_to 'New Promote Buyer', new_admin_promote_buyer_path(request.GET), class: 'ui teal button' %> </div> <table class="ui bottom attached table"> <thead> <tr> <th>ID</th> <th>Buyer</th> <th>Promote</th> <th>Actions</th> </tr> </thead> <tbody> <% @promote_buyers.each do |promote_buyer| %> <tr> <td><%= promote_buyer.id %></td> <td><%= promote_buyer.buyer.name %></td> <td><%= promote_buyer.promote.name %></td> <td> <%= link_to 'Destroy', admin_promote_buyer_path(promote_buyer), method: :delete, data: { confirm: 'Are you sure?' }, class: 'ui red label' %> </td> </tr> <% end %> </tbody> </table> <%= paginate @promote_buyers %> </div>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rails_trade-0.0.1 | app/views/rails_trade_admin/promote_buyers/index.html.erb |