Advertisement
Guest User

Untitled

a guest
Jan 16th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 13.22 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html xmlns:th="http://www.thymeleaf.org">
  3. <head>
  4.  
  5. <meta charset="utf-8">
  6. </head>
  7. <body>
  8.  
  9. <!-- Sticky Header Title -->
  10. <div class="sticky-container">
  11. <div class="content-area-title-bar entity-form-actions">
  12. <h3>
  13. <span class="filter-text" style="display: none;">Filtered </span>
  14. <span class="admin-section">
  15. Orders
  16. </span>
  17. </h3>
  18.  
  19.  
  20.  
  21. <h4 class="main-count">
  22.  
  23. map here the total orders
  24.  
  25. </h4>
  26. </div>
  27.  
  28.  
  29. </div>
  30.  
  31.  
  32. <div class="sticky-container-padding" style="display: none;" ></div>
  33. <div class="section-tabs">
  34.  
  35. <div class="errors">
  36.  
  37. </div>
  38.  
  39. <div class="entity-errors"></div>
  40. <ul class="nav nav-tabs">
  41. <li class="active" role="presentation">
  42. <a href="#tab1" class="first-tab">
  43. <span data-tabkey="Pending">Pending</span>
  44. <i class="fa-pulse fa fa-spinner" style="display: none;"></i>
  45. </a>
  46. </li>
  47. <li role="presentation" class="">
  48. <a href="#tab2">
  49. <span data-tabkey="Completed">Completed</span>
  50. <i class="fa-pulse fa fa-spinner" style="display: none;"></i>
  51. </a>
  52. </li>
  53.  
  54. </ul>
  55. </div>
  56.  
  57. <!-- END OF TABS HERE -->
  58.  
  59. <div class="content-yield">
  60. <div class="row">
  61. <form action="/admin/myorders/1" method="POST" class="entity-form blc-admin-ajax-update ">
  62. <span style="display: none;" id="previewurl" data-href="/admin/sandbox/preview?ceilingEntity=org.broadleafcommerce.core.catalog.domain.Product&amp;id=1&amp;directPreview=true"></span>
  63.  
  64.  
  65.  
  66.  
  67.  
  68.  
  69. <div class="tabs-content">
  70. <div class="tab1Tab entityFormTab active" id="Pending" style="">
  71.  
  72.  
  73.  
  74.  
  75. <!-- MY GENUINE TABLE 1 -->
  76.  
  77. <div class="listgrid-header-wrapper">
  78.  
  79. <table class="list-grid-table table table-striped " id="listGrid-main-header" >
  80. <thead>
  81. <tr>
  82.  
  83. <th scope="col">
  84. <div class="listgrid-headerBtn split dropdown">
  85. <div class="listgrid-title">
  86. <span>0rder id #</span>
  87.  
  88. <div class="resizer" >&nbsp;</div>
  89. </div>
  90. </div>
  91. </th>
  92.  
  93. <th scope="col">
  94. <div class="listgrid-headerBtn split dropdown">
  95. <div class="listgrid-title">
  96. <span>Order Number</span>
  97.  
  98. <div class="resizer" >&nbsp;</div>
  99. </div>
  100. </div>
  101. </th>
  102.  
  103. <th scope="col">
  104. <div class="listgrid-headerBtn split dropdown">
  105. <div class="listgrid-title">
  106. <span>e-Mail</span>
  107.  
  108. <div class="resizer" >&nbsp;</div>
  109. </div>
  110. </div>
  111. </th>
  112.  
  113. <th scope="col">
  114. <div class="listgrid-headerBtn split dropdown">
  115. <div class="listgrid-title">
  116. <span>Date</span>
  117.  
  118. <div class="resizer" >&nbsp;</div>
  119. </div>
  120. </div>
  121. </th>
  122.  
  123. <th scope="col">
  124. <div class="listgrid-headerBtn split dropdown">
  125. <div class="listgrid-title">
  126. <span>Money</span>
  127.  
  128. <div class="resizer" >&nbsp;</div>
  129. </div>
  130. </div>
  131. </th>
  132.  
  133. <th scope="col">
  134. <div class="listgrid-headerBtn split dropdown">
  135. <div class="listgrid-title">
  136. <span>Shipping</span>
  137.  
  138. <div class="resizer" >&nbsp;</div>
  139. </div>
  140. </div>
  141. </th>
  142.  
  143. <th scope="col">
  144. <div class="listgrid-headerBtn split dropdown">
  145. <div class="listgrid-title">
  146. <span>Tax</span>
  147.  
  148. <div class="resizer" >&nbsp;</div>
  149. </div>
  150. </div>
  151. </th>
  152.  
  153. <th scope="col">
  154. <div class="listgrid-headerBtn split dropdown">
  155. <div class="listgrid-title">
  156. <span>Total</span>
  157.  
  158. <div class="resizer" >&nbsp;</div>
  159. </div>
  160. </div>
  161. </th>
  162. </tr>
  163. </thead>
  164.  
  165.  
  166.  
  167. <tbody>
  168. <tr th:each="order : ${orderss}" >
  169. <td th:text="${order.id}"></td>
  170. <td> <a th:utext="${order.orderNumber}" th:href="@{'showorder/' + ${order.orderNumber}}" > </a></td>
  171. <td th:text="${order.emailAddress}"></td>
  172. <td th:text="${order.submitDate}"></td>
  173. <td th:text="${order.subTotal }"></td>
  174. <td th:text="${order.totalFulfillmentCharges}"></td>
  175. <td th:text="${order.totalTax}"></td>
  176. <td th:text="${order.total}"></td>
  177. </tr>
  178. </tbody>
  179. </table>
  180.  
  181. <!-- END OF MY GENUINE TABLE 1 -->
  182. </div>
  183. </div>
  184. <!-- END OF TABLE 1 -->
  185.  
  186.  
  187.  
  188.  
  189.  
  190. <div class="tab2Tab entityFormTab" id="Completed" >
  191.  
  192.  
  193.  
  194.  
  195. <!-- MY GENUINE TABLE 2 Completed -->
  196.  
  197. <div class="listgrid-header-wrapper">
  198.  
  199. <table class="list-grid-table table table-striped " id="listGrid-main-header" >
  200. <thead>
  201. <tr>
  202.  
  203. <th scope="col">
  204. <div class="listgrid-headerBtn split dropdown">
  205. <div class="listgrid-title">
  206. <span>0rder id #</span>
  207.  
  208. <div class="resizer" >&nbsp;</div>
  209. </div>
  210. </div>
  211. </th>
  212.  
  213. <th scope="col">
  214. <div class="listgrid-headerBtn split dropdown">
  215. <div class="listgrid-title">
  216. <span>Order Number</span>
  217.  
  218. <div class="resizer" >&nbsp;</div>
  219. </div>
  220. </div>
  221. </th>
  222.  
  223. <th scope="col">
  224. <div class="listgrid-headerBtn split dropdown">
  225. <div class="listgrid-title">
  226. <span>e-Mail</span>
  227.  
  228. <div class="resizer" >&nbsp;</div>
  229. </div>
  230. </div>
  231. </th>
  232.  
  233. <th scope="col">
  234. <div class="listgrid-headerBtn split dropdown">
  235. <div class="listgrid-title">
  236. <span>Date</span>
  237.  
  238. <div class="resizer" >&nbsp;</div>
  239. </div>
  240. </div>
  241. </th>
  242.  
  243. <th scope="col">
  244. <div class="listgrid-headerBtn split dropdown">
  245. <div class="listgrid-title">
  246. <span>Money</span>
  247.  
  248. <div class="resizer" >&nbsp;</div>
  249. </div>
  250. </div>
  251. </th>
  252.  
  253. <th scope="col">
  254. <div class="listgrid-headerBtn split dropdown">
  255. <div class="listgrid-title">
  256. <span>Shipping</span>
  257.  
  258. <div class="resizer" >&nbsp;</div>
  259. </div>
  260. </div>
  261. </th>
  262.  
  263. <th scope="col">
  264. <div class="listgrid-headerBtn split dropdown">
  265. <div class="listgrid-title">
  266. <span>Tax</span>
  267.  
  268. <div class="resizer" >&nbsp;</div>
  269. </div>
  270. </div>
  271. </th>
  272.  
  273. <th scope="col">
  274. <div class="listgrid-headerBtn split dropdown">
  275. <div class="listgrid-title">
  276. <span>Total</span>
  277.  
  278. <div class="resizer" >&nbsp;</div>
  279. </div>
  280. </div>
  281. </th>
  282. </tr>
  283. </thead>
  284.  
  285.  
  286.  
  287. <tbody>
  288. <tr th:each="order : ${orderss}" >
  289. <td th:text="${order.id}"></td>
  290. <td> <a th:utext="${order.orderNumber}" th:href="@{'showorder/' + ${order.orderNumber}}" > </a></td>
  291. <td th:text="${order.emailAddress}"></td>
  292. <td th:text="${order.submitDate}"></td>
  293. <td th:text="${order.subTotal }"></td>
  294. <td th:text="${order.totalFulfillmentCharges}"></td>
  295. <td th:text="${order.totalTax}"></td>
  296. <td th:text="${order.total}"></td>
  297. </tr>
  298. </tbody>
  299. </table>
  300.  
  301. <!-- END OF MY GENUINE TABLE 2 completed -->
  302. </div>
  303. </div>
  304. <!-- END OF TABLE 2 -->
  305.  
  306.  
  307.  
  308.  
  309. </div>
  310.  
  311. </div>
  312. </div>
  313.  
  314.  
  315. </body>
  316. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement