Sha256: 932da5f6f992739d043501fc1448924d7a1595e65f8a7f63fba18ce075eed85b
Contents?: true
Size: 1.21 KB
Versions: 68
Compression:
Stored size: 1.21 KB
Contents
<div class="panel panel-default cdb_panel" id="logins-container"> <div class="panel-heading"> <h3 class="panel-title adjusted-panel-title"> <a data-toggle="collapse" data-parent="#accordion" href="#loginsCollapse"> Logins </a> </h3> </div> <div id="loginsCollapse" class="panel-collapse collapse in"> <div class="panel-body"> <div class="table-responsive div-table-viz"> <table class="table table-hover data-table" id="logins"> <thead> <tr> <th class="not-displayed"></th> <th>Date/Time of Login</th> </tr> </thead> <tbody> <%= render partial: "think_feel_do_engine/login_events/login_event", collection: @participant.participant_login_events %> </tbody> </table> </div> <p id="login-count">Total: <%= @participant.sign_in_count %></p> </div> </div> </div> <script type="text/javascript"> $(function() { return $('#logins').dataTable({ order: [[1, 'desc']], columnDefs: [ { targets: [0], visible: false }, { targets: [1], orderData: [0] } ] }); }); </script>
Version data entries
68 entries across 68 versions & 1 rubygems