<form method="POST">
<table class="table table-striped table-hover sorted_table">
  <thead>
    <tr>
      <th></th>
      <th>ID</th>
      <th>Title</th>
      <th>Widget Name</th>
    </tr>
  </thead>
  <tbody class="ui-sortable">
    {{#each data}}
      <tr model-widget="{{id}}" class="ui-state-default ui-sortable-handle" model-id="{{id}}" data-weight="{{weight}}">
        <td style="width: 30px; cursor: move;">
          <span class="glyphicon glyphicon-resize-vertical"></span>
        </td>

        <td>
          <bind model-widget-{{id}}="id">{{id}}</bind>
          <input type="hidden" name="widgetId" value="{{id}}">
        </td>
        <td><bind model-widget-{{id}}="title">{{title}}</bind></td>
        <td><bind model-widget-{{id}}="type">{{type}}</bind></td>
      </tr>
    {{/each}}
  </tbody>
  <tfoot><tr><td colspan="4">
    <button type="button" data-dismiss="modal" class="btn btn-primary">{{t 'done'}}</button>
  </td></tr></tfoot>
</table>
</form>

<script> $(function() {
  we.admin.layouts.widgetTableSorter('.sorted_table > tbody', '{{regionName}}', '{{layoutName}}');
});</script>