Changeset 8296 for mauRepo/MolesManager/trunk/src/MolesManager/static/templates/cedaSearchResults.html
- Timestamp:
- 02/05/12 14:06:03 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
mauRepo/MolesManager/trunk/src/MolesManager/static/templates/cedaSearchResults.html
r8290 r8296 9 9 <div class="grid_12"> 10 10 <h5>Search Results</h5> 11 <script type="text/javascript"> 12 require(['dojox/grid/DataGrid']); 13 </script> 14 <script> 15 /* 16 jquery tablesorter functionality 17 $(function() { 18 $("#restab").tablesorter(); 19 }); 20 */ 21 </script> 11 22 </div> <!-- End of div stuff --> 12 23 <div class="grid_12 claro fillWhite"> … … 14 25 {% csrf_token %} 15 26 <div id="searchResults"> 16 <ol> 17 {% for location, id in searchResults %} 18 <li><a href="{{ location }}">{{ id }}</a></li> 27 <table id="restab" border="1"> 28 <thead> 29 <tr> 30 <th>Location</th> 31 <th>Id</th> 32 <th>Author</th> 33 </tr> 34 </thead> 35 <tbody> 36 {% for location, id, auth in searchResults %} 37 <tr bgcolor="white"> 38 <td>{{ location }}</td> 39 <td><a href="{{ location }}">{{ id }}</a></td> 40 <td>{{ auth }}</td> 41 </tr> 19 42 {% endfor %} 20 </ol> 43 </tbody> 44 </table> 21 45 </div> <!-- End of div myForm --> 22 46 </div> <!-- End of div claro -->
Note: See TracChangeset
for help on using the changeset viewer.