Sha256: e6c334ef123135befc34ea1116da0ca9d461c414f547b73e063374dafc4b500f
Contents?: true
Size: 744 Bytes
Versions: 2
Compression:
Stored size: 744 Bytes
Contents
<h2> <%= params[:active].to_i == 0 ? "In-A" : "A" %>ctive Surveys </h2> <h3> <% if can_administer? %> <%= link_to "New Survey", new_survey_path %> | <% if params[:active].to_i == 0 %> <%= link_to "View Active Surveys", surveys_path(active: 1) %> <% else %> <%= link_to "View Inactive Surveys", surveys_path(active: 0) %> <% end %> <% end %> </h3> <h4> <%= link_to t('Back to home'), '/' %> </h4> <hr/> <table> <colgroup> <col> <col width="250"> </colgroup> <thead> <tr> <th>Survey</th> <th>Action</th> </tr> </thead> <tbody> <%= render partial: "survey", collection: @surveys %> </tbody> </table> <% if defined?(Kaminari) %> <%= paginate @surveys %> <% end %>
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
rapidfire-8.0.0 | app/views/rapidfire/surveys/index.html.erb |
rapidfire-5.0.0 | app/views/rapidfire/surveys/index.html.erb |