Sha256: fd035e7aa4bb0dba337cfc9d338daf3f01ee8ce98d0c4a76e64bdfa4802cf953
Contents?: true
Size: 955 Bytes
Versions: 1
Compression:
Stored size: 955 Bytes
Contents
<div> <div class="ui top attached menu borderless"> <div class="item"><strong>Promote Goods</strong></div> </div> <div class="ui segment bottom attached"> <%= render 'search_form' %> </div> <div class="ui segment top attached"> <%= link_to 'New Promote Good', new_promote_good_path, class: 'ui teal button' %> </div> <table class="ui bottom attached table"> <thead> <tr> </tr> </thead> <tbody> <% @promote_goods.each do |promote_good| %> <tr> <td> <%= link_to 'Show', promote_good_path(promote_good), class: 'ui blue label' %> <%= link_to 'Edit', edit_promote_good_path(promote_good), class: 'ui pink label' %> <%= link_to 'Destroy', promote_good_path(promote_good), method: :delete, data: { confirm: 'Are you sure?' }, class: 'ui red label' %> </td> </tr> <% end %> </tbody> </table> <%= paginate @promote_goods %> </div>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rails_trade-0.0.1 | app/views/rails_trade_admin/promote_goods/index.html.erb |