<div class="col-sm-9 table-responsive">
  <ol class="breadcrumb">
    <li class="breadcrumb-item"><a href="#">Home</a></li>
    <li class="breadcrumb-item active"><a href="#textmessages">Text Messages</a> </li>
  </ol>

  <table class="table striped" id="showusers">
    <thead>
      <tr>
        <th>User Name</th>
        <th>User Number</th>
        <th>Login</th>
        <th></th>
      </tr>
    </thead>
    <tbody>
      {{#each textmessage}}
        <tr>
          <td>{{data.user.firstName}} {{data.user.lastName}}</td>
          <td>{{data.user.userNumber}}</td>
          <td>{{data.user.login}}</td>
          <td> <button class="btn btn-warning btn-xs" data-id="{{this.data.user.login}}" id="viewactivity">View Activity</button> </td>
        </tr>
      {{/each}}
    </tbody>
  </table>

</div>
<div class="col-sm-3">
  <div class="list-group">
    <a href="#" class="list-group-item"> Plugin Settings</a>
    <a href="#brandsettings" class="list-group-item">Brand Settings</a>
    <a href="#globalsettings" class="list-group-item">Global Settings</a>
    <a href="#brandftp" class="list-group-item">Image Processing</a>
    <a href="#uploadassets" class="list-group-item">Upload Assets</a>
    <a href="#productsyncstatus" class="list-group-item">Product Sync Status</a>
    <a href="#textmessages" class="list-group-item">Text Messages</a>
    <a href="#useractivityunit" class="list-group-item">User Activity Resport</a>
  </div>
</div>
