Advertisement
Guest User

Untitled

a guest
Jun 5th, 2014
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.89 KB | None | 0 0
  1. <div id="content-box">
  2.         <div id="submitshipment">
  3.             Please select from below.
  4.             <form name="dataform" method="post" action="{{ path('log_submitlog') }}" id="dataform">
  5.                 <table id="datarow">
  6.                     <thead>
  7.                     <th>DA</th>
  8.                     <th>Part</th>
  9.                     <th>Batch</th>
  10.                     <th>Rack</th>
  11.                     <th>Die Code</th>
  12.                     <th>Heat Code</th>
  13.                     <th>Qty</th>
  14.                     <th>Select</th>
  15.                 </table>
  16.                 <div id="logs">
  17.                     <input type="date" name="shipdate" required><br/>
  18.                     <input type="number" name="qtyshipped" placeholder="Qty Out" required><br/>
  19.                     <input type="text" name="blno" placeholder="BL #" required><br/>
  20.                     <button type="submit" name="submit">Submit</button>
  21.                 </div>
  22.             </form>
  23.         </div>
  24.  
  25.         <hr />
  26.  
  27.         <div id="searchsub">
  28.                 <div class="searchsubform">
  29.                     <form id="subform">
  30.                         <input type="text" id="form_dano" name="dano" placeholder="Search by DA #" value="{{ app.request.get('dano') }}" id="searchda"/>
  31.                         <button type="submit" name="submit">Search</button>
  32.                     </form>
  33.                 </div>
  34.             <div id="sublist">
  35.                 <table id="showsub" class="tablesorter">
  36.                     <thead>
  37.                     <th>DA &uarr;&darr;</th>
  38.                     <th>Part &uarr;&darr;</th>
  39.                     <th>Batch &uarr;&darr;</th>
  40.                     <th>Rack &uarr;&darr;</th>
  41.                     <th>Die Code &uarr;&darr;</th>
  42.                     <th>Heat Code &uarr;&darr;</th>
  43.                     <th>Qty &uarr;&darr;</th>
  44.                     <th>Select</th>
  45.                     </thead>
  46.                     {% for entity in entities %}
  47.                         <tr class="datarow original" data-id="{{ entity.subid }}">
  48.                             <td class="dano"><input type="hidden" name="searchsub[]" value="{{ entity.subid }}" />
  49.                                 {{ entity.dano }}</td>
  50.                             <td class="partno">{{ entity.partno }}</td>
  51.                             <td class="batchno">{{ entity.batchno }}</td>
  52.                             <td class="rackno">{{ entity.rackno }}</td>
  53.                             <td class="diecode">{{ entity.diecode }}</td>
  54.                             <td class="heatcode">{{ entity.heatcode }}</td>
  55.                             <td class="inqty">{{ entity.inqty }}</td>
  56.                             <td class="select"><input type="checkbox" id="subcheck" name="sub[]" value="{{ entity.subid }}" /></td>
  57.                         </tr>
  58.                     {% endfor %}
  59.                 </table>
  60.             </div>
  61.         </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement