Sha256: b936a50088e9d7bdb1a1f1fc2940a2d1fb7ea9195925a6f0563c75c45218b6db
Contents?: true
Size: 414 Bytes
Versions: 12
Compression:
Stored size: 414 Bytes
Contents
<% if @user.has_feature? :show_widget_table do %> <table> <thead> <tr> <th>Widget Name</th> </tr> </thead> <tbody> <% @user.widgets.each do |widget| %> <tr> <td><%= widget.name %></td> <% end %> </tbody> </table> <% end; else %> <ul> <% @user.widgets.each do |widget| %> <li><%= widget.name %></li> <% end %> </ul> <% end %>
Version data entries
12 entries across 12 versions & 1 rubygems