Sha256: 97b16ad30699f4b74b01164215f64b68c353443452d4d84e134d6ba1d5270581
Contents?: true
Size: 1.14 KB
Versions: 68
Compression:
Stored size: 1.14 KB
Contents
<div class="panel panel-default cdb_panel" id="mood-container"> <div class="panel-heading"> <h3 class="panel-title adjusted-panel-title"> <a data-toggle="collapse" data-parent="#accordion" href="#moodsCollapse"> Mood </a> </h3> </div> <div id="moodsCollapse" class="panel-collapse collapse in"> <div class="panel-body"> <div class="table-responsive div-table-viz"> <table class="table table-hover data-table" id="moods-table"> <thead> <tr> <th class="not-displayed"></th> <th>Rating 0 (Bad) to 10 (Good)</th> <th>Date</th> </tr> </thead> <tbody> <%= render partial: "think_feel_do_engine/moods/mood", collection: @participant.moods %> </tbody> </table> </div> </div> </div> </div> <script type="text/javascript"> $(function() { return $('#moods-table').dataTable({ order: [[2, 'desc']], columnDefs: [ { targets: [0], visible: false }, { targets: [2], orderData: [0] } ] }); }); </script>
Version data entries
68 entries across 68 versions & 1 rubygems