1234567891011121314151617181920212223242526272829303132333435 |
- <div class="thin">
- <div class="header">
- <h2>{{ heading }}</h2>
- </div>
- <table width="100%" class="layout">
- <tr class="colhead"><td id="sorting_head">Sorting</td></tr>
- <tr>
- <td id="drag_drop_textnote">
- <ul>
- <li>Click on the headings to organize columns automatically.</li>
- <li>Sort multiple columns simultaneously by holding down the shift key and clicking other column headers.</li>
- <li>Click and drag any row to change its order.</li>
- <li>Double-click on a row to check it.</li>
- </ul>
- </td>
- </tr>
- </table>
- <form action="bookmarks.php" method="post" id="drag_drop_collage_form">
- <div class="drag_drop_save">
- <input type="submit" name="update" value="Update ranking" title="Save your rank" class="tooltip save_sortable_collage" />
- <input type="submit" name="delete" value="Delete checked" title="Remove items" class="tooltip save_sortable_collage" />
- </div>
- <table id="manage_collage_table">
- <thead>
- <tr class="colhead">
- <th style="width: 7%;" data-sorter="false">Order</th>
- <th style="width: 1%;"><span><abbr class="tooltip" title="Current order">#</abbr></span></th>
- <th style="width: 1%;"><span>Year</span></th>
- <th style="width: 15%;" data-sorter="ignoreArticles"><span>Artist</span></th>
- <th data-sorter="ignoreArticles"><span>Torrent</span></th>
- <th style="width: 5%;" data-sorter="relativeTime"><span>Bookmarked</span></th>
- <th style="width: 1%;" id="check_all" data-sorter="false"><span>Remove</span></th>
- </tr>
- </thead>
- <tbody>
|