Guest User

Untitled

a guest
Jan 23rd, 2019
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.84 KB | None | 0 0
  1. <table id="store_table" class="table-striped table-hover">
  2. <thead class="thead-light">
  3. <tr>
  4. <th>Store #</th>
  5. <th>Name</th>
  6. <th>Phone</th>
  7. <th>City</th>
  8. <th>State</th>
  9. </tr>
  10. </thead>
  11.  
  12. <tbody>
  13. {% for store in stores %}
  14. <tr id="table-row">
  15. <td><a href="/stores/{{ store.pk }}">{{ store.store_number }}</a></td>
  16. <td><a href="/stores/{{ store.pk }}">{{ store.name }}</a></td>
  17. <td>{{ store.phone }}</td>
  18. <td>{{ store.city }}</td>
  19. <td>{{ store.state }}</td>
  20. {% for circuit in store.circuit_set.all %}
  21. <td>{{ circuit.circuit_id }}</td>
  22. {% endfor %}
  23. <td>{{ store.postal }}</td>
  24.  
  25. </tr>
  26. {% endfor %}
  27. </tbody>
  28. </table>
  29.  
  30. jQuery.Deferred exception: i is undefined Ha@http://cdn.datatables.net/1.10.19/js/jquery.dataTables.min.js:24:397
  31. O@http://cdn.datatables.net/1.10.19/js/jquery.dataTables.min.js:16:421
  32. na/<@http://cdn.datatables.net/1.10.19/js/jquery.dataTables.min.js:17:21
  33. map/<@https://code.jquery.com/jquery-3.3.1.min.js:2:1324
  34. map@https://code.jquery.com/jquery-3.3.1.min.js:2:3169
  35. map@https://code.jquery.com/jquery-3.3.1.min.js:2:1292
  36. na@http://cdn.datatables.net/1.10.19/js/jquery.dataTables.min.js:16:497
  37. e@http://cdn.datatables.net/1.10.19/js/jquery.dataTables.min.js:92:431
  38. n/<@http://cdn.datatables.net/1.10.19/js/jquery.dataTables.min.js:93:118
  39. each@https://code.jquery.com/jquery-3.3.1.min.js:2:2571
  40. each@https://code.jquery.com/jquery-3.3.1.min.js:2:1238
  41. n@http://cdn.datatables.net/1.10.19/js/jquery.dataTables.min.js:83:194
  42. h.fn.DataTable@http://cdn.datatables.net/1.10.19/js/jquery.dataTables.min.js:165:488
  43. @http://10.200.20.63:8080/stores/:12810:19
  44. l@https://code.jquery.com/jquery-3.3.1.min.js:2:29373
  45. a/</c<@https://code.jquery.com/jquery-3.3.1.min.js:2:29677
  46. undefined
Add Comment
Please, Sign In to add comment