<div class="col-sm-9 table-responsive">
  <ol class="breadcrumb">
    <li class="breadcrumb-item"><a href="#brandftp">Home</a></li>
    <li class="breadcrumb-item active">Brand Image FTP </li>

  </ol>
  <table class="table striped">
    <thead>
      <tr>
        <th>Brand Name</th>
        <th>Opt Id</th>
        <th>Input file type</th>
        <th>Ftp Protocol</th>
        <th>Ftp Host</th>
        <th>Ftp Port</th>
        <th>Ftp User</th>
        {{!--
        <th>Ftp Password</th>--}} {{!--
        <th>Ftp Directory</th>--}}
        <th>Status</th>
        <th><a class="btn btn-info" href='#brandftp/new'>Add</a></th>
      </tr>
    </thead>
    <tbody>
      {{#each brandftps}}
      <tr>
        <td>{{brandName}}</td>
        <td>{{optId}}</td>
        <td>{{fileType}}</td>
        <td>{{protocol}}</td>
        <td>{{ftpHost}}</td>
        <td>{{ftpPort}}</td>
        <td>{{ftpUser}}</td>
        {{!--
        <td>{{ftpPassword}}</td>--}} {{!--
        <td>{{ftpInputDir}}</td>--}}
        <td>{{status}}</td>
        <td>
          <div class="col-sm-6 col-xs-6">
            <a class="btn btn-warning btn-xs" id='formattersEdit' href='#brandftp/{{_id}}'>Edit</a>
          </div>
          <div class="col-sm-6 col-xs-6">
            <a class="btn btn-danger btn-xs" id='formattersdelete' data-id='{{this._id}}'>Delete</a>
          </div>


        </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>