Sha256: 9fefdd40c1814c8896d72770ab73d6ef589cc060cd2df920bece30a9208afdb3

Contents?: true

Size: 1.65 KB

Versions: 16

Compression:

Stored size: 1.65 KB

Contents

<div class="panel panel-default cdb_panel" id="on-my-mind-container">
  <div class="panel-heading">
    <h3 class="panel-title adjusted-panel-title">
      <a data-toggle="collapse" data-parent="#accordion" href="#on-my-mindCollapse">
        On-My-Mind Statements
      </a>
    </h3>
  </div>

  <div id="on-my-mindCollapse" class="panel-collapse collapse in">
    <div class="panel-body">
      <div class="table-responsive div-table-viz">
        <table class="table table-hover data-table" id="on-my-mind_data">
          <thead>
          <tr>
            <th class="not-displayed"></th>
            <th>Description</th>
            <th>Created</th>
            <th>Week</th>
            <th>Likes</th>
            <th>Comments</th>
          </tr>
          </thead>
          <tbody>

          <% membership.on_the_minds.each do |statement| %>

            <tr>
              <td class="not-displayed">
                <%= statement.created_at.to_i %>
              </td>
              <td><%= statement.description %></td>
              <td><%= statement.created_at.to_s(:standard) %></td>
              <td><%= week_in_study(statement.created_at, membership) %></td>
              <td><%= statement.likes.count %></td>
              <td><%= statement.comments.count %></td>
            </tr>
          <% end %>

          </tbody>
        </table>
      </div>
    </div>
  </div>
</div>
<script>
  $(function () {
    return $('#on-my-mind_data').dataTable({
      order: [[0, "desc"]],
      columnDefs: [
        {
          targets: [0],
          visible: false
        },
        {
          targets: [3],
          iDataSort: [0]
        }
      ]
    });
  });
</script>

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
social_networking-0.13.3 app/views/social_networking/coach/patient_dashboards/tables/_on_my_mind_statements.html.erb
social_networking-0.13.2 app/views/social_networking/coach/patient_dashboards/tables/_on_my_mind_statements.html.erb
social_networking-0.13.1 app/views/social_networking/coach/patient_dashboards/tables/_on_my_mind_statements.html.erb
social_networking-0.13.0 app/views/social_networking/coach/patient_dashboards/tables/_on_my_mind_statements.html.erb
social_networking-0.12.0 app/views/social_networking/coach/patient_dashboards/tables/_on_my_mind_statements.html.erb
social_networking-0.11.8 app/views/social_networking/coach/patient_dashboards/tables/_on_my_mind_statements.html.erb
social_networking-0.11.7 app/views/social_networking/coach/patient_dashboards/tables/_on_my_mind_statements.html.erb
social_networking-0.11.6 app/views/social_networking/coach/patient_dashboards/tables/_on_my_mind_statements.html.erb
social_networking-0.11.5 app/views/social_networking/coach/patient_dashboards/tables/_on_my_mind_statements.html.erb
social_networking-0.11.4 app/views/social_networking/coach/patient_dashboards/tables/_on_my_mind_statements.html.erb
social_networking-0.11.3 app/views/social_networking/coach/patient_dashboards/tables/_on_my_mind_statements.html.erb
social_networking-0.11.2 app/views/social_networking/coach/patient_dashboards/tables/_on_my_mind_statements.html.erb
social_networking-0.11.1 app/views/social_networking/coach/patient_dashboards/tables/_on_my_mind_statements.html.erb
social_networking-0.11.0 app/views/social_networking/coach/patient_dashboards/tables/_on_my_mind_statements.html.erb
social_networking-0.10.0 app/views/social_networking/coach/patient_dashboards/tables/_on_my_mind_statements.html.erb
social_networking-0.9.3 app/views/social_networking/coach/patient_dashboards/tables/_on_my_mind_statements.html.erb